使用篇SpringBoot访问静态资源

Posted myitnews

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用篇SpringBoot访问静态资源相关的知识,希望对你有一定的参考价值。

默认的,SpringBoot会从两个地方查找静态资源:

  • classpath/static 的目录下
  • ServletContext 根目录下

一、classpath/static 的目录

在类路径下常见static目录,名称必须是static

技术图片

index.html

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>静态资源访问方式一</title>
</head>
<body>
    静态资源访问方式一<br>
    <img alt="" src="images/java.png"> <!-- 不用写static-->
</body>
</html>

二、ServletContext 根目录下

在src/main中添加webapp,名称必须是webapp。

技术图片

以上是关于使用篇SpringBoot访问静态资源的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot - 实现静态资源的访问(附:修改过滤规则静态资源位置)

springBoot怎样访问静态资源?+静态资源简介

SpringBoot静态资源目录

SpringBoot中静态资源访问方案

springboot-静态资源访问

springboot-静态资源访问