springboot 静态资源配置

Posted 骑着毛驴追火车

tags:

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

package com.linmingliang.myblog.interceptor;

import org.springframework.stereotype.Component;
import org.springframework.util.ResourceUtils;
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport;

/**
* @Author: lml
* @Date: 2018/6/1 16:32
* @Description:
*/
@Component
public class MyWebAppConfigurer extends WebMvcConfigurationSupport {

@Override
protected void addResourceHandlers(ResourceHandlerRegistry registry) {
super.addResourceHandlers(registry);
registry.addResourceHandler("/**").addResourceLocations(ResourceUtils.CLASSPATH_URL_PREFIX+"/static/");
registry.addResourceHandler("/upload/**").addResourceLocations("file:D:/mydreams/myblog/upload/");
}
}





















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

spring boot修改静态资源能不能不用重启

springBoot怎样访问静态资源?+静态资源简介

spring boot整合security 4,怎么设置忽略的静态资源?

Springboot配置静态资源

SpringBoot2---静态资源映射规则

SpringBoot静态资源目录