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

网友投稿 390 2023-05-16


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:/****/

如果自定义访问路径则yOcIdL需要添加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 默认静态资源路径与手动配置访问路径的方法,希望对大家有所帮助,如果大家有任何疑问请给我留言,会及时回复大家的。在此也非常感谢大家对我们网站的支持!


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:Java LocalCache 本地缓存的实现实例
下一篇:ByteArrayInputStream简介和使用_动力节点Java学院整理
相关文章

 发表评论

暂时没有评论,来抢沙发吧~