當(dāng)前位置:
首頁 >
前端技术
> javascript
>内容正文
javascript
SpringBoot 指定静态资源路径
生活随笔
收集整理的這篇文章主要介紹了
SpringBoot 指定静态资源路径
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
可單獨(dú)指定Mapping,不動用default配置。
1.配置類代碼實(shí)現(xiàn)(常見)
低版本
高版本
package com.gblfy.config;import org.springframework.beans.factory.annotation.Value; import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry; import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;/*** web 配置類** @author gblfy* @Date 2019/11/12日 下午5:03:32*/ @Configuration public class WebConfig implements WebMvcConfigurer {/*** 在配置文件中配置的文件保存路徑*/@Value("${files.location}")private String files;/*** 靜態(tài)資源映射*/@Overridepublic void addResourceHandlers(ResourceHandlerRegistry registry) {//本應(yīng)用\static\editor\fontsregistry.addResourceHandler("/flies/**").addResourceLocations("file:" + files);} }配置文件
spring.resources.static-locations=classpath:/META-INF/resources/,classpath:/resources/,\classpath:/static/,classpath:/public/,file:c:/appfiles/總結(jié)
以上是生活随笔為你收集整理的SpringBoot 指定静态资源路径的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Gitlab14.x 安装、配置、启动
- 下一篇: 企业微信H5_网页jssdk调用 判断当