我是靠谱客的博主 阳光钻石,最近开发中收集的这篇文章主要介绍使用SpringMVC的拦截器interceptor解决项目路径问题,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

原来在jsp页面上使用的是

${pageContext.request.contextPath}

使用SpringMVC的拦截器,自定义的拦截器实现HandlerInterceptor接口,用户所有的请求都会被拦截器拦截,可以在preHandle和和postHandle中编写自己的业务逻辑

public class LoginInterceptor implements HandlerInterceptor {
@Override
public boolean preHandle(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse, Object o) throws Exception {
return true;
}
@Override
public void postHandle(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse, Object o, ModelAndView modelAndView) throws Exception {
//如果不是转发的view
if (null != modelAndView) {
if (!(modelAndView.getView() instanceof RedirectView)) {
String basePath = httpServletRequest.getContextPath();
modelAndView.addObject("basePath",basePath);
}
}
}
@Override
public void afterCompletion(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse, Object o, Exception e) throws Exception {
}
}

在SpringMVC的配置文件中配置拦截器

<!--拦截器-->
<mvc:interceptors>
<bean class="com.xx.interceptors.LoginInterceptor"></bean>
</mvc:interceptors>

这样即可在页面中使用${basePath}来获取到项目路径

最后

以上就是阳光钻石为你收集整理的使用SpringMVC的拦截器interceptor解决项目路径问题的全部内容,希望文章能够帮你解决使用SpringMVC的拦截器interceptor解决项目路径问题所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(41)

评论列表共有 0 条评论

立即
投稿
返回
顶部