owo
静态资源映射
静态资源默认在 resources/static
目录下
静态资源过滤
application.properties
文件中的配置信息默认为
/**
,直接访问localhost:8080
之后加路径即可
.mvc.static-path-pattern=/** spring
- 修改默认路径
- 访问静态资源需要为
localhost:8080/images
后加路径
.mvc.static-path-pattern=/images/** spring
静态资源位置
.web.resources.static-locations=classpath:/static/ spring
默认即 target/classes
下
一般不用调整