摘要: https://start.spring.io/ 阅读全文
posted @ 2020-08-18 23:51 尐鱼儿 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-08-18 23:46 尐鱼儿 阅读(180) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/aobing/p/13522118.html 阅读全文
posted @ 2020-08-18 18:29 尐鱼儿 阅读(96) 评论(0) 推荐(0) 编辑
摘要: import java.io.UnsupportedEncodingException; import org.apache.tomcat.util.codec.binary.Base64; /** * Base64内容传送编码被设计用来把任意序列的8位字节描述为一种不易被人直接识别的形式。*/ p 阅读全文
posted @ 2020-08-18 18:15 尐鱼儿 阅读(576) 评论(0) 推荐(0) 编辑
摘要: 动态 INCLUDE 用 jsp:include 动作实现 <jsp:include page="included.jsp" flush="true" /> 它总是会检查所含文件中的变化 , 适合用于包含动态页面 , 并且可以带参数。各个文件分别先编译,然后组合成一个文件。 静态 INCLUDE 用 阅读全文
posted @ 2020-08-18 18:06 尐鱼儿 阅读(266) 评论(0) 推荐(0) 编辑
摘要: 1、首先要明确什么是拦截器、什么是过滤器 1.1 什么是拦截器: 拦截器,在AOP(Aspect-Oriented Programming)中用于在某个方法或字段被访问之前,进行拦截然后在之前或之后加入某些操作。拦截是AOP的一种实现策略。在Webwork的中文文档的解释为——拦截器是动态拦截Act 阅读全文
posted @ 2020-08-18 18:05 尐鱼儿 阅读(133) 评论(0) 推荐(0) 编辑