Spring Boot中静态资源等应该放在什么位置
3 回答
手掌心
TA贡献1942条经验 获得超3个赞
123 | web.upload-path=D: /temp/study13/ spring.mvc.static-path-pattern=/** spring.resources.static-locations=classpath: /META-INF/resources/ ,classpath: /resources/ ,\ classpath: /static/ ,classpath: /public/ , file :${web.upload-path} |
默认情况是可以放到:resources、static、public,但通过我上面的配置还可以放到:D:/temp/study13/
更多Springboot文章可百度我昵称的中文部份
陪伴而非守候
TA贡献1757条经验 获得超8个赞
src/main/resoures这个路径下的文件是在classpath下的,比如说这下面有一个
spring.xml ,在web.xml 里注册的话就是类似于
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath*:/spring.xml</param-value>
</context-param>
- 3 回答
- 0 关注
- 834 浏览
添加回答
举报
0/150
提交
取消