- 浏览: 9249 次
- 性别:
- 来自: 武汉
最新评论
文章列表
Java 中 Listener监听器作用
1.1 Listener对象分类Servlet的Listener监听器包括三种类型:1、ServletContextListener 监听ServletContext对象
Java代码
public void contextInitialized(ServletContextEvent event);
public void contextDestoryed(ServletContextEvent event);
public void contextInitialized(ServletC ...
过滤器Filter也具有生命周期:init()->doFilter()->destroy(),由部署文件中的filter元素驱动。在servlet2.4中,过滤器同样可以用于请求分派器,但须在web.xml中声明,<dispatcher>INCLUDE或FORWARD或REQUEST或ERROR</dispatcher>该元素位于filter-mapping中。 一、批量设置请求编码 Java代码 public class EncodingFilter implements Filter { private String encoding ...