spring Filter进不去,不知道为什么进入不到类中
web.xml里面
<!-- 客户端鉴权 -->
<filter>
<filter-name>ClientTokenFilter</filter-name>
<filter-class>com.ustcinfo.bia.common.filter.ClientTokenFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>ClientTokenFilter</filter-name>
<url-pattern>*.h5</url-pattern>
</filter-mapping>
public class ClientTokenFilter implements Filter{
@Override
public void doFilter(ServletRequest req, ServletResponse resp, FilterChain chain) throws ServletException, IOException {
System.out.println("进入了过滤器");
return;
}
@Override
public void init(FilterConfig filterConfig) throws ServletException {
// TODO Auto-generated method stub
}
@Override
public void destroy() {
// TODO Auto-generated method stub
}
}
按ctrl是能从xml点到类里面的。但是运行的时候进不去。
顺便问一句后缀是不是写成什么都行(这里是.h5),只要匹配了就能访问?
调用的时候,直接就绕过去了,没有进入到filter里面进行验证
$.ajax({
url:commonObj.domain+"/h5/insertOptLogRecord.h5",
method:"POST",
contentType : 'application/json;charset=UTF-8',
data:dataEncode,
async:true,
"success":function(optLogObj){
window.parent.qtEntrance.PrintLog("操作记录-"+optContent+"-AJAX成功");
},
"error":function(XMLHttpRequest, textStatus, errorThrown){
window.parent.qtEntrance.PrintLog("操作记录-"+optContent +"-AJAX错误");
commonObj.saveInfo2Custom(dataEncode,"/h5/insertFaultCheck.h5");
}
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论