摘要:
<bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter"></bean> 阅读全文
摘要:
springmvc-config.xml <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/20 阅读全文
摘要:
<!-- 指定响应体返回类型和编码 , 解决乱码????的问题 --> <mvc:annotation-driven> <mvc:message-converters register-defaults="true"> <bean class="org.springframework.http.co 阅读全文
摘要:
静态资源过滤 spring-config.xml <!-- 3,(1)让Spring MVC不处理静态资源 。(2)加载静态资源,也称为资源过滤 --> <mvc:default-servlet-handler /> 前端加载 jsp <%-- ${pageContext.request.conte 阅读全文
摘要:
1:右击项目工程名称2:Properties3: Jvav Build Path4: Libraries5: Add External JARS6: 找到“E:\apache-tomcat-9.0.43\lib\servlet-api.jar” 7:添加既可 阅读全文
摘要:
1,修改 pureftp的配置文件 ForcePassiveIP 为服务器的ip , 并去掉 # 2,FileZilla 使用明文连接 阅读全文
摘要:
request.getSession().getServletContext().getRealPath("upload/" ); 阅读全文
摘要:
Index.jsp <a href="servlet/HelloServlet">servlet/HelloServlet</a><br> <a href="<%=request.getContextPath() %>/servlet/HelloServlet">HelloServlet</a> < 阅读全文
摘要:
package util; import java.sql.Connection; import java.sql.DriverManager; import java.sql.SQLException; public class DBHelper { // 0,导入jar包 // 1,数据库驱动 阅读全文