阅读量:0
在Spring中获取项目根目录有多种方式:
- 使用
System.getProperty()
方法获取user.dir
属性,该属性表示当前工作目录,即项目根目录。
String rootDirectory = System.getProperty("user.dir");
- 使用
ServletContext
对象获取项目根目录。
@Autowired private ServletContext servletContext; public String getRootDirectory() { String rootDirectory = servletContext.getRealPath("/"); return rootDirectory; }
- 使用
ResourceLoader
对象获取项目根目录。
@Autowired private ResourceLoader resourceLoader; public String getRootDirectory() { Resource resource = resourceLoader.getResource("classpath:"); String rootDirectory = resource.getFile().getAbsolutePath(); return rootDirectory; }
注意:以上方法都是在Spring MVC或Spring Boot项目中获取项目根目录的方式,如果是普通的Spring项目,可能需要进行适当的调整。