web.xml文件配置CharsetEncodingFiltercom.hbyhhh.drp.Filter.CharsetEncodingFilter
web.xml文件配置
CharsetEncodingFilter
com.hbyhhh.drp.Filter.CharsetEncodingFilter
CharsetEncodingFilter
/*
实现接口的三个方法
public void destroy() {
System.out.println("销毁了");
}
public void doFilter(ServletRequest request, ServletResponse response,
FilterChain chain) throws IOException, ServletException {
System.out.println("Demo1过滤前");
chain.doFilter(request, response);//放行。让其走到下个链或目标资源中
System.out.println("Demo1过滤后");
}
public void init(FilterConfig filterConfig) throws ServletException {
System.out.println("初始化了");
}
kou kou 846814473求远程
急,在线等,帮忙解决者追至200分
展开