上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 22 下一页
摘要: 还有两个与HttpSession相关的特殊的监听器,这两个监听器的特点如下: l 不用在web.xml文件中部署; l 这两个监听器不是给session添加,而是给Bean添加。即让Bean类实现监听器接口,然后再把Bean对象添加到session域中。 下面对这两个监听器介绍一下: l HttpS 阅读全文
posted @ 2017-04-20 12:47 贱贱的小帅哥 阅读(487) 评论(0) 推荐(0) 编辑
摘要: 当对域属性进行增、删、改时,执行的监听器一共有三个: l ServletContextAttributeListener:在ServletContext域进行增、删、改属性时调用下面方法。 public void attributeAdded(ServletContextAttributeEvent 阅读全文
posted @ 2017-04-20 12:44 贱贱的小帅哥 阅读(152) 评论(0) 推荐(0) 编辑
摘要: l ServletContextEvent:ServletContext getServletContext(); l HttpSeessionEvent:HttpSession getSession(); l ServletRequestEvent: ServletRequest getServl 阅读全文
posted @ 2017-04-20 12:42 贱贱的小帅哥 阅读(239) 评论(0) 推荐(0) 编辑
摘要: 创建与销毁监听器一共有三个: l ServletContextListener:Tomcat启动和关闭时调用下面两个方法 public void contextInitialized(ServletContextEvent evt):ServletContext对象被创建后调用; public vo 阅读全文
posted @ 2017-04-20 12:41 贱贱的小帅哥 阅读(305) 评论(0) 推荐(0) 编辑
摘要: 在JavaWeb被监听的事件源为:ServletContext、HttpSession、ServletRequest,即三大域对象。 l 监听域对象“创建”与“销毁”的监听器; l 监听域对象“操作域属性”的监听器; l 监听HttpSession的监听器。 阅读全文
posted @ 2017-04-20 12:39 贱贱的小帅哥 阅读(227) 评论(0) 推荐(0) 编辑
摘要: 1、domain:存放数据 2、dao: //把xml中的数据查询出来之后,封装到user对象中, public User find(){ return new User("haha","123"); } 3、service: private UserDao userdao=new UserDao( 阅读全文
posted @ 2017-04-06 14:44 贱贱的小帅哥 阅读(147) 评论(0) 推荐(0) 编辑
摘要: JavaWeb三层框架 Web层 --> 与Web相关的内容(Servlet,JSP,Servlet相关API:request、response、session、ServletContext)业务层 --> 业务对象(Service)数据层 --> 操作数据库(DAO Data Access Obj 阅读全文
posted @ 2017-04-06 14:13 贱贱的小帅哥 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 它不是java独有,所有的B/S结构的项目都在使用它! M -- model 模型(自己写代码) V -- View 视图(jsp) C -- Cotroller 控制器(Servlet) MVC模式(Model-View-Controller)是软件工程中的一种软件架构模式,把软件系统分为三个基本 阅读全文
posted @ 2017-04-06 14:02 贱贱的小帅哥 阅读(107) 评论(0) 推荐(0) 编辑
摘要: URL重写(理解) 就是把所有的页面中的路径,都使用response.encodeURL("..")处理一下! * session依赖Cookie,目的是让客户端发出请求时归还sessionId,这样才能找到对应的session * 如果客户端禁用了Cookie,那么就无法得到sessionId,那 阅读全文
posted @ 2017-04-05 16:13 贱贱的小帅哥 阅读(1326) 评论(0) 推荐(0) 编辑
摘要: web.xml中配置session的最大不活动时间 <session-config> <session-timeout>30</session-timeout> </session-config> 阅读全文
posted @ 2017-04-05 15:42 贱贱的小帅哥 阅读(426) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 22 下一页