springboot访问静态资源
Posted 云晴
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot访问静态资源相关的知识,希望对你有一定的参考价值。
@Configuration public class WebMvcConfiguration extends WebMvcConfigurationSupport { @Override public void addResourceHandlers(ResourceHandlerRegistry registry) { registry.addResourceHandler("/static/**").addResourceLocations("classpath:/static/"); } }
templates中的html页面这样引用
<link rel="stylesheet" type="text/css" href="static/css/reset.css"/>
<link rel="stylesheet" type="text/css" href="static/css/reset.css"/>
static 下web中的html这样引用
<script src="../js/jquery-3.3.1.min.js"></script>
以上是关于springboot访问静态资源的主要内容,如果未能解决你的问题,请参考以下文章
SpringBoot目录文件结构和官方推荐的目录规范静态资源访问