码迷,mamicode.com
首页 > 移动开发 > 详细

获取tomcat下webapp路径

时间:2020-05-08 16:19:14      阅读:70      评论:0      收藏:0      [点我收藏+]

标签:real   http   Servle   gets   tca   cep   tst   get   string   

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");

 

获取tomcat下webapp路径

标签:real   http   Servle   gets   tca   cep   tst   get   string   

原文地址:https://www.cnblogs.com/dxk1019/p/12850869.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!