您的位置:首页 > 编程语言 > Java开发

spring mvc中获取项目绝对路径

2017-02-28 15:32 281 查看

spring mvc中获取项目绝对路径的方式

1.HttpServletRequest

public String getPath(HttpServletRequest request, Model model) throws Exception{
String basePath = request.getServletContext().getRealPath("/");
return "";
}

2.使用了spring

(1).配置web.xml如下:

<context-param>
<param-name>webAppRootKey</param-name>
<param-value>test.webapp</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.util.WebAppRootListener</listener-class>
</listener>

(2).程序中通过如下代码即可获取

String basePath = System.getProperty("test.webapp");
注:

(1).param-value节点可以任意取值,确保同一tomcat下值不同即可;

(2).basePath = basePath.replaceAll("\\\\", "/");//地址统一为'/'分隔,便于在UNIX服务器上使用。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: