我想使用静态目录中的资源,这个目录可能有另一个子目录。
在spring boot application.properties文件中我使用下面的键来引用外部目录:C:/ custResources /。我可以从这个目录中引用资源,但不能从子目录中引用资源,例如: C:/ custResources / 1,C:/ custResources / 2等。
(+s)
答案 0 :(得分:0)
看起来我做错了。
下面的属性足以将整个目录及其文件夹添加为静态位置。
spring.resources.static-locations=classpath:/META-INF/resources/,classpath:/resources/,classpath:/static/,classpath:/public/,file:/C:/resources
我可以访问位于C:/ resources / 1中的视频作为localhost:8080/1 / sample.mp4等等。