上一页 1 ··· 6 7 8 9 10
摘要: ##静态资源过滤 防止包内xml文件没有扫描 <build> <resources> <resource> <directory>src/main/java</directory> <includes> <include>**/*.properties</include> <include>**/* 阅读全文
posted @ 2021-03-05 16:36 —清风碎心— 阅读(59) 评论(0) 推荐(0) 编辑
摘要: driver=com.mysql.jdbc.Driverurl=jdbc:mysql://localhost:3306?useUnicode=true&characterEncoding=utf-8username=rootpassword=123456 阅读全文
posted @ 2021-02-16 23:47 —清风碎心— 阅读(95) 评论(0) 推荐(0) 编辑
摘要: IDEA 警告 No archetype found in remote catalog. Defaulting to internal catalog 新建Maven项目,遇到警告: No archetype found in remote catalog. Defaulting to inter 阅读全文
posted @ 2021-02-15 20:43 —清风碎心— 阅读(1621) 评论(0) 推荐(0) 编辑
摘要: Servlet & JSP <!-- https://mvnrepository.com/artifact/javax.servlet.jsp/javax.servlet.jsp-api --> <dependency> <groupId>javax.servlet.jsp</groupId> <a 阅读全文
posted @ 2021-02-15 16:12 —清风碎心— 阅读(43) 评论(0) 推荐(0) 编辑
摘要: JSTL & Standard <!-- https://mvnrepository.com/artifact/javax.servlet.jsp.jstl/jstl --> <dependency> <groupId>javax.servlet.jsp.jstl</groupId> <artifa 阅读全文
posted @ 2021-02-15 16:01 —清风碎心— 阅读(126) 评论(0) 推荐(0) 编辑
摘要: jdbc连接MySql数据库 package com.zhy; import com.mysql.jdbc.Driver; import java.sql.*; /** * @author ZHY * @data 2021/2/15 */ public class TestJdbc { public 阅读全文
posted @ 2021-02-15 15:52 —清风碎心— 阅读(54) 评论(0) 推荐(0) 编辑
摘要: 九大内置对象 内置对象 Servlet对应类 request HttpServletRequest response HttpServletResponse session HttpSession application ServletContext out JspWriter pageContex 阅读全文
posted @ 2021-02-15 15:44 —清风碎心— 阅读(43) 评论(0) 推荐(0) 编辑
摘要: <!--注册servlet--> <servlet> <servlet-name>hello</servlet-name> <servlet-class>servlet.HellowServlet</servlet-class> </servlet> <!--servlet路径映射--> <serv 阅读全文
posted @ 2021-02-14 01:08 —清风碎心— 阅读(35) 评论(0) 推荐(0) 编辑
摘要: 流的关闭 先关外层,再关内层 先开后关dao 先开的输入流,再开的输出流,通过读取输入流,写入输出流中,那么应该先关输出流,再关输入流 (其实无所谓 先关哪个都可以 因为传完了) 只关处理流,不关节点流 阅读全文
posted @ 2021-02-05 18:11 —清风碎心— 阅读(705) 评论(0) 推荐(0) 编辑
摘要: web.xml 头约束 Servlet2.3 <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd" > < 阅读全文
posted @ 2021-02-05 17:56 —清风碎心— 阅读(249) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10