spring MVC拦截器(HandlerInterceptor) preHandle 一个请求执行了两次
由于 web.xml 里加载 xml 配置文件的写法不对,导致有些 xml 被加载了两次。
错误写法:
springmvc org.springframework.web.servlet.DispatcherServlet contextConfigLocation classpath*:applicationContext-*.xml 1
其实就是 classpath 后多了一个 * 把这个 * 去掉就OK了。
关于classpath*:与classpath:的区别见: