使用SpringMVC的拦截器interceptor解决项目路径问题
原来在jsp页面上使用的是${pageContext.request.contextPath}使用SpringMVC的拦截器,自定义的拦截器实现HandlerInterceptor接口,用户所有的请求都会被拦截器拦截,可以在preHandle和和postHandle中编写自己的业务逻辑public class LoginInterceptor implements HandlerIntercepto