jsp简单的filter使用
Posted nanahaha
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jsp简单的filter使用相关的知识,希望对你有一定的参考价值。
如果新建没有filter
window->perspective->customize perspective..->menu visibility->file->new->filter打勾重启软件就ok了
filter是一个特殊的java类,实现了javax.servlet.Filter接口
init-----初始化进行
destory-------销毁进行
doFilter-----对请求进行过滤处理
chain.doFilter(request,response)---过滤器链,多个servlet
不用注解在index.html做一个简单的计数器
在filter定义一个全局变量-------- private int count;
在init内
String param = fConfig.getinitParameter("count");
count = Integer.valueOf(param);
在doFilter内
count++
//得到一个application对象
HttpServletRequest req = (HttpServletRequest)request;
ServletContext context = req.getServletContext(); //context就是application
context.setAttribute("count",count);
在index.jsp的body内
<h2>欢迎第【<%=application.getAttribute("count")%>】位访客</h2>
在web.xml中
<filter>
<filter-name>自己取的名字A</filter-name>
<filter-class>filter类的全名</filter-class>
<init-param> //根据<init-param>传递参数
<param-name>(参数名字)count</param-name>
<param-value>5000</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>自己取的名字A</filter-name>
<url-pattern>/index.jsp所在文件夹/index.jsp</url-pattern> //映射是访问哪个文件需要过滤/*是所有文件
<filter-mapping>
以上是关于jsp简单的filter使用的主要内容,如果未能解决你的问题,请参考以下文章