spring boot 静态资源映射

Posted xiayizhan

tags:

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

package com.ehongcn.ccp.ss.dd.common.security;

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.WebMvcConfigurerAdapter;

@Configuration
public class DdConfig extends WebMvcConfigurerAdapter {

@Value("${hadoop.static.resource.path}")
private String hadoopStaticResourcePath;

@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
// 将所有/static/** 访问都映射到classpath:/static/ 目录下
registry.addResourceHandler("/localStatic/**").addResourceLocations(
"file:D:/Java-Dev/workspace/maven.1524747092348/ccp-system-controlling/src/main/webapp/WEB-INF/classes/META-INF/resources/dist"
+ hadoopStaticResourcePath);

}

}

浏览器直接访问或js请求 http://localhost:8080(端口号)/localStatic/test.mp4(文件名)

可直接访问D:/...(绝对路径)下的静态资源。











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

spring boot 静态资源的映射规则 webjars 资源映射

spring boot 静态资源的映射规则 欢迎页面映射

spring boot 静态资源映射

Spring Boot对静态资源的映射规则

Springboot 系列Spring Boot web 开发之静态资源和模版引擎

使用 Spring Boot 映射 html 资源