java web中filter过滤器的使用
2021-02-20 03:25
标签:config cep web xml配置 nts mapping content pattern character 编写filter过滤器有两种方法,一种是使用注解配置,另一种是使用web.xml配置,此处使用web.xml配置来实现过滤器 (1)使用web.xml配置过程 (2)过滤器主体demo 通过过滤器,我们可以实现统一的对请求和响应中文乱码问题的配置,不用在每次请求和响应的demo中都去设置utf-8的编码 java web中filter过滤器的使用 标签:config cep web xml配置 nts mapping content pattern character 原文地址:https://www.cnblogs.com/yinghuapiaoluo/p/12683747.html
public class setCharacterEncodingFilter implements Filter{
@Override
public void destroy() {
// TODO Auto-generated method stub
//Filter.super.destroy();
}
@Override
public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain)
throws IOException, ServletException {
// TODO Auto-generated method stub
request.setCharacterEncoding("utf-8");
response.setContentType("text/html;charset=utf-8");
chain.doFilter(request, response);
}
@Override
public void init(FilterConfig filterConfig) throws ServletException {
// TODO Auto-generated method stub
//Filter.super.init(filterConfig);
}
}
文章标题:java web中filter过滤器的使用
文章链接:http://soscw.com/index.php/essay/57817.html