获取tomcat下webapp路径

1

 ServletRequestAttributes att=(ServletRequestAttributes)RequestContextHolder.getRequestAttributes();
  HttpServletRequest request = att.getRequest();
  request.getSession().getServletContext().getRealPath("/") ;

 

2

String resoucePath=当前类.class.getResource("/").getPath();
String webappsDir=(new File(resoucePath,"../../")).getCanonicalPath();

 

3 在propertie文件里写死路径

去读取

Properties properties = new Properties();
InputStream in =当前类.class.getClassLoader().getResourceAsStream("demo.properties");
properties.load(in);
String webapps = properties.getProperty("path");

 

posted @ 2020-05-08 15:43  糖里里  阅读(1401)  评论(0编辑  收藏  举报