springboot_v2.3以前不需要“web”resources:#静态资源位置。默认为 "classpath:/META-INF/resources/","classpath:/resources/", "classpath:/static/", "classpath:/public/"static-locations:-file:./dist/# 相对路径。命令行所在的目录#- file:D:/workspace/lishuoboy-test/dist/mvc:#静态资源访问路径前缀...
static-locations: - file:./dist/ # 相对路径。命令行所在的目录 #- file:D:/workspace/lishuoboy-test/dist/ mvc: #静态资源访问路径前缀。默认为根目录/**,如http://localhost:8080/stat/贾静雯.png。如需配置多个,实现 WebMvcConfigurer.addResourceHandlers() #static-path-pattern: /** static-path-pa...
package com.example.spring6.resources; import org.springframework.core.io.FileSystemResource; import java.io.InputStream; public class FileSystemResourceDemo { public static void loadAndReadUrlResource(String path) throws Exception{ //相对路径 FileSystemResource resource = new FileSystemResource("exampl...