博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Spring boot 默认静态资源路径与手动配置访问路径
阅读量:5876 次
发布时间:2019-06-19

本文共 1263 字,大约阅读时间需要 4 分钟。

在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; /**  * 手动配置访问路径,继承WebMvcConfigurerAdapter类重写configurePathMatch方法
*  */ @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

转载于:https://www.cnblogs.com/dakewang/p/6824844.html

你可能感兴趣的文章
java查找string1和string2是不是含有相同的字母种类和数量(string1是否是string2的重新组合)...
查看>>
Android TabActivity使用方法
查看>>
Eclipse的 window-->preferences里面没有Android选项
查看>>
《麦田里的守望者》--[美]杰罗姆·大卫·塞林格
查看>>
遇到的那些坑
查看>>
央行下属的上海资信网络金融征信系统(NFCS)签约机构数量突破800家
查看>>
[转] Lazy evaluation
查看>>
常用查找算法总结
查看>>
被神话的大数据——从大数据(big data)到深度数据(deep data)思维转变
查看>>
修改校准申请遇到的问题
查看>>
Linux 进程中 Stop, Park, Freeze【转】
查看>>
文件缓存
查看>>
远程协助
查看>>
Scrum实施日记 - 一切从零开始
查看>>
关于存储过程实例
查看>>
配置错误定义了重复的“system.web.extensions/scripting/scriptResourceHandler” 解决办法...
查看>>
AIX 7.1 install python
查看>>
PHP盛宴——经常使用函数集锦
查看>>
重写 Ext.form.field 扩展功能
查看>>
Linux下的搜索查找命令的详解(locate)
查看>>