spring mvc使用Servlet3异步要注意的几个问题

阅读更多
1、注意添加
true
在web.xml中对DispatcherServlet和所有filter添加true

2、如果集成了shiro一定要注意在mapping中增加dispatcher项,否则会抛出org.apache.shiro.UnavailableSecurityManagerException异常


    shiroFilter
    /*
    REQUEST
    ASYNC


3、如果项目用到了ehcache gzip filter,在异步请求返回时会抛出java.io.IOException: write beyond end of stream异常,解决方案是将gzip filer 换成com.googlecode.webutilities的compressionFilter

你可能感兴趣的:(spring,gzip,shiro,async,异步请求)