06SpringBoot访问静态资源

目录

一、SpringBoot访问静态资源_静态资源相关目录

static目录

 templates目录

二、SpringBoot访问静态资源_静态资源其他存放位置


一、SpringBoot访问静态资源_静态资源相关目录

 SpringBoot项目中没有WebApp目录,只有src目录。在src/main/resources 下面有 static templates 两个文件夹。SpringBoot默认在static 目录中存放静态资源,而 templates 中放动态页面

static目录

SpringBoot 通过 /resources/static 目录访问静态资源,在 resources/static 中编写html 页面:
1.编写page1.html
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>测试HTML</title>
</head>
<body>
<h1>我的HTML</h1>
<img src="/img/img.png">
</body>
</html>

2.目录结构:

 templates目录

SpringBoot 中不推荐使用 JSP 作为动态页面,而是默认使用Thymeleaf编写动态页面。 templates 目录是存放 Thymeleaf 页面的目录,稍后我们讲解Thymeleaf 技术。

二、SpringBoot访问静态资源_静态资源其他存放位置

 除了 /resources/static 目录,SpringBoot还会扫描以下位置的静态资源:

1./resources/META INF/resources/
2./resources/resources/
3./resources/public/

我们还可以在配置文件自定义静态资源位置

自定义静态资源位置不可以直接使用,要在配置文件中配置,这里在application.yaml文件中配置,在 SpringBoot 配置文件进行自定义静态资源位置配置

 

spring:
  web:
    resources:
      static-locations: classpath:/suibian/,classpath:/static/
注意:
1. 该配置会覆盖默认静态资源位置,如果还想使用之前的静态资源位置,还需要配置在后面。
2.SpringBoot2.5之前的配置方式为: spring.resources.static - locations
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值