摘要: 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) 编辑
摘要: https://cloud.tencent.com/developer/article/1403947 通常情况下,SpringMVC可以通过入参的方式绑定HttpServletRequest和HttpServletReponse(SpringMVC在调用处理器时会自动创建对应的HttpServle 阅读全文
posted @ 2019-11-21 16:24 cuiqq 阅读(606) 评论(0) 推荐(0) 编辑
摘要: setnx 阅读全文
posted @ 2019-11-21 14:43 cuiqq 阅读(133) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/digimon100/article/details/93137694 https://mp.weixin.qq.com/s/TBCEwLVAXdsTszRVpXhVug? 阅读全文
posted @ 2019-11-21 14:20 cuiqq 阅读(387) 评论(0) 推荐(0) 编辑
摘要: cookie存放容量4k左右,可设置过期时间。 1、cookie的封装使用 //设置cookies function setCookie(name, value) { var Days = 30; var exp = new Date(); exp.setTime(exp.getTime() + D 阅读全文
posted @ 2019-11-21 10:28 cuiqq 阅读(3760) 评论(0) 推荐(0) 编辑