springboot获取resource下static里面文件的路径
时间: 2023-04-04 21:01:59 浏览: 717
springboot如何获取相对路径文件夹下静态资源的方法
可以使用以下代码获取resource下static文件夹中的文件路径:
```
String filePath = this.getClass().getClassLoader().getResource("static/文件名").getPath();
```
其中,"文件名"是你要获取路径的文件名。
阅读全文