上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 28 下一页
摘要: https://www.cnblogs.com/yaboya/p/9107442.html 阅读全文
posted @ 2019-11-23 14:34 cuiqq 阅读(140) 评论(0) 推荐(0) 编辑
摘要: mybatis 中![CDATA[...]] 阅读全文
posted @ 2019-11-23 11:03 cuiqq 阅读(129) 评论(0) 推荐(0) 编辑
摘要: 转载: 一.chain.doFilter作用 1.一般filter都是一个链,web.xml 里面配置了几个就有几个。一个一个的连在一起request -> filter1 -> filter2 ->filter3 -> …. -> request resource. 2.chain.doFilte 阅读全文
posted @ 2019-11-22 15:49 cuiqq 阅读(996) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/chen_changying/article/details/99697080 阅读全文
posted @ 2019-11-22 11:18 cuiqq 阅读(170) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/doraemon_meow_meow/article/details/88420238 阅读全文
posted @ 2019-11-22 11:03 cuiqq 阅读(106) 评论(0) 推荐(0) 编辑
摘要: java对象的四种引用:强引用、软引用、弱引用和虚引用 在JDK1.2之前,创建的对象只有在处于可触及(reachable)的状态下,才能被程序使用。也就是说,若一个对象不被任何变量引用,那么程序就无法再使用这个对象。垃圾回收器一旦发现这些无用对象,就会对其进行回收。但是,在某些情况下,我们会希望有 阅读全文
posted @ 2019-11-22 11:03 cuiqq 阅读(843) 评论(0) 推荐(0) 编辑
摘要: 《将博客搬至CSDN》 阅读全文
posted @ 2019-11-22 10:52 cuiqq 阅读(108) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/q5706503/article/details/82910428public class TestMain { public static void main(String[] args) { BookVO bookVO1 = new BookVO(); 阅读全文
posted @ 2019-11-22 10:36 cuiqq 阅读(423) 评论(0) 推荐(0) 编辑
摘要: https://www.jianshu.com/p/31d27181d542 java类中获取ServletContext的方法 起因是我想要获取一个相对路径,需要用到servletContext的getRealPath()方法,于是上网搜索,找到两种方法来获取ServletContext. 方法1 阅读全文
posted @ 2019-11-21 16:49 cuiqq 阅读(156) 评论(0) 推荐(0) 编辑
摘要: Session创建事件发生在每次一个新的session创建的时候,类似地Session失效事件发生在每次一个Session失效的时候。这个接口也只包含两个方法,分别对应于Session的创建和失效:# public void sessionCreated(HttpSessionEvent se);# 阅读全文
posted @ 2019-11-21 16:34 cuiqq 阅读(552) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 28 下一页