时间:2021-05-20
在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;/** * 手动配置静态资源路径 * */@Configurationpublic 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 默认静态资源路径与手动配置访问路径的方法,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
vue-cli开发过程中路由#不好看,去掉可使用history模式,开发模式路径访问都没问题,部署到服务器之后访问路径时报404,这种情况需要配置服务器默认访问
静态资源路径静态资源支持放在以下路径中,访问优先级从上到下:classpath:/META-INF/resources/classpath:/resources
配置方法基于当前的1.5.2.RELEASE的SpringBoot。依照官方文档,如果增加了如下依赖的配置,或者类路径中存在spring-boot-starte
创建SpringBoot项目,启动后,默认的访问路径即主机IP+默认端口号8080:http://localhost:8080/此时,我们就可以访问Contro
一、概述springboot默认静态资源访问的路径为:/static或/public或/resources或/META-INF/resources这样的地址都必