Skip to content

静态文件夹配置

发布时间:

一操作方法(会直接隐藏掉默认的res静态目录,慎用):

  1. 在src/main/resources目录下 application.properties中添加:
    spring.web.resources.static-locations=file:/data/imgs/
  2. 图片等静态资源放入/data/imgs/中
  3. 访问网站域名直接加资源名,如:www.meky.space/a.png

二 添加设置文件(推荐)

、、、 package com;

import org.springframework.context.annotation.Configuration; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry; import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;

@Configuration public class WebMvcConfig implements WebMvcConfigurer { @Override public void addResourceHandlers(ResourceHandlerRegistry registry) { //自定义路径mypic, addResourceLocations指定访问资源所在目录 file:/data/imgs/ registry.addResourceHandler("/img/**").addResourceLocations("file:/data/imgs/"); } } 、、、