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

时间: 2017-05-05

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值