Spring boot 默认静态资源路径与手动配置访问路径的方法

Posted air_balloon

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring boot 默认静态资源路径与手动配置访问路径的方法相关的知识,希望对你有一定的参考价值。

这篇文章主要介绍了Spring boot 默认静态资源路径与手动配置访问路径的方法,非常不错,具有参考借鉴价值,需要的朋友可以参考下
 

在application.propertis中配置

##端口号
server.port=8081
##默认前缀
spring.mvc.view.prefix=/
## 响应页面默认后缀
spring.mvc.view.suffix=.html
# 默认值为 /**
spring.mvc.static-path-pattern=/**
# 这里设置要指向的路径,多个使用英文逗号隔开,默认值为 classpath:/META-INF/resources/,classpath:/resources/,classpath:/static/,classpath:/public/
spring.resources.static-locations= classpath:/META-INF/resources/,classpath:/resources/,classpath:/static/,classpath:/public/,classpath:/****/

如果自定义访问路径则需要添加WebConfig配置类

package com.dakewang.config;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.PathMatchConfigurer;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;
/**
 * 手动配置静态资源路径
 * 
 */
@Configuration
public class WebConfig extends WebMvcConfigurerAdapter{
  @Override
  public void configurePathMatch(PathMatchConfigurer configurer) {
    configurer.setUseSuffixPatternMatch(false).
        setUseTrailingSlashMatch(true);
  }
}

在controller中

/**
 * 跳转index.html页面
 * @return
 */
@RequestMapping("/index")
public String indexHtml() {
  return "index";
}

在浏览器中访问地址

localhost:8081/index

以上是关于Spring boot 默认静态资源路径与手动配置访问路径的方法的主要内容,如果未能解决你的问题,请参考以下文章

Spring Boot自定义静态资源映射

spring boot 静态资源。。

Spring Boot 静态资源处理

Spring Boot 静态资源处理

Spring Boot 2从入门到入坟 | Web场景开发篇:超硬核两万四千多字,全网最详细源码分析之静态资源配置原理,不是你来砍我

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