spring-boot 静态资源自定义配置

Posted 钟政123

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring-boot 静态资源自定义配置相关的知识,希望对你有一定的参考价值。

@Configuration
public class MyWebAppConfig extends WebMvcConfigurerAdapter {
    @Override
    public void addResourceHandlers(ResourceHandlerRegistry registry) {
        registry.addResourceHandler("/myResource/**").addResourceLocations("classpath:/myResource/");
        super.addResourceHandlers(registry);
    }    
}
复制代码

参考:http://www.cnblogs.com/chry/p/5877979.html

以上是关于spring-boot 静态资源自定义配置的主要内容,如果未能解决你的问题,请参考以下文章

Laravel 5.5 资源自定义 show($id) 方法

spring-boot 加载本地静态资源文件路径配置

android学习笔记40——国际化和资源自适应

Spring-Boot静态文件处理

解决spring-boot启动中碰到的问题:Cannot determine embedded database driver class for database type NONE(转)(代码片段

VSCode自定义代码片段11——vue路由的配置