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 中拿项目路径的主要内容,如果未能解决你的问题,请参考以下文章

通过java获取当前项目路径

java 项目如何获取项目所在的物理根路径

普通JAVA类 如何获取,WEB项目的根路径

C#获取项目的路径

如何读取java项目中文件的相对路径

在java web项目中,如何获取项目的绝对路径(考虑到后期移植不能写死),大神帮忙!