使用篇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访问静态资源的主要内容,如果未能解决你的问题,请参考以下文章