java 中拿项目路径
Posted littleapple
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 中拿项目路径相关的知识,希望对你有一定的参考价值。
public class ItemPathInterceptor extends HandlerInterceptorAdapter {
@Override
public boolean preHandle(HttpServletRequest request,
HttpServletResponse response, Object handler) throws Exception {
request.setAttribute("itemPath", request.getContextPath());
return true;
}
}
或者直接引用 request.getContextPath();
这里的itemPath和前一篇的 ${pageContext.request.contextPath} 是一样的结果,我们可以用${itemPath}
以上是关于java 中拿项目路径的主要内容,如果未能解决你的问题,请参考以下文章