springboot获取resource目录路径
时间: 2023-04-09 13:02:24 浏览: 163
springboot资源
可以使用以下代码获取resource目录路径:
```
String resourcePath = Thread.currentThread().getContextClassLoader().getResource("").getPath();
```
这将返回一个字符串,其中包含resource目录的绝对路径。
阅读全文
springboot资源