随笔分类 -  web

web
摘要:Servlet的Listener监听器包括三种类型:1、ServletContextListener 监听ServletContext对象publicvoid contextInitialized(ServletContextEvent event); publicvoid contextDestoryed(ServletContextEvent event);2、HttpSessionListener 监听Session对象publicvoid sessionCreated(HttpSessionEvent event); publicvoid sessionDestoryed(HttpSe 阅读全文
posted @ 2011-11-07 15:32 方坚.cn 阅读(687) 评论(0) 推荐(0)
摘要:web.xml 1 <?xml version="1.0" encoding="UTF-8"?> 2 <web-app xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_ 阅读全文
posted @ 2011-11-02 11:05 方坚.cn 阅读(1209) 评论(0) 推荐(0)