发布时间:2014-12-30 19:15:01
1. 自定义一个filter,并将这个filter定义在spring的filter之前,或者所有的filter之前 <filter> <filter-name>AuthenticationFilter</filter-name> <filter-class>com.elong.xxx.AuthenticationFilter</filter-class> </filter> <filter-mapping> <filter-name>AuthenticationF.........【阅读全文】
发布时间:2014-12-30 18:59:16
response保存了请求的返回信息,里面有个outputstream,你要返回给页面的流,都在这个地方保存. 之前遇到一个问题,想把outputstream修改一下.因为这是个输出流,想要改这个里面的东西不是这么简单的. sun为我们提供了这么一个工具HttpServletResponseWrapper抽象类,利用这个类的子类把servletresponse包装一下,在过.........【阅读全文】