如何获取SpringBoot静态资源路径?
时间: 2023-06-05 09:09:01 浏览: 340
SpringBoot静态资源目录访问
你可以使用Spring Boot提供的ResourceLoader来获取静态资源的路径,具体可以参考以下代码:
@Autowired
private ResourceLoader resourceLoader;
public void getResourcePath() {
Resource resource = resourceLoader.getResource("classpath:static/file.txt");
File file = resource.getFile();
String filePath = file.getAbsolutePath();
}
这个例子中会获取静态资源文件 file.txt 的绝对路径。
阅读全文