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

2025-05-29 0 80

在application.propertis中配置

?

1

2

3

4

5

6

7

8

9

10
##端口号

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配置类

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16
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中

?

1

2

3

4

5

6

7

8
/**

* 跳转index.html页面

* @return

*/

@RequestMapping("/index")

public String indexHtml() {

return "index";

}

在浏览器中访问地址

localhost:8081/index

以上所述是小编给大家介绍的Spring boot 默认静态资源路径与手动配置访问路径的方法,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对快网idc网站的支持!

原文链接:http://www.cnblogs.com/dakewang/archive/2017/05/08/6824844.html

收藏 (0) 打赏

感谢您的支持,我会继续努力的!

打开微信/支付宝扫一扫,即可进行扫码打赏哦,分享从这里开始,精彩与您同在
点赞 (0)

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。

快网idc优惠网 建站教程 Spring boot 默认静态资源路径与手动配置访问路径的方法 https://www.kuaiidc.com/116745.html

相关文章

发表评论
暂无评论