【Java】SpringBoot如何在html页面中插入图片?
配置如下:
spring.resources.static-locations=classpath:/META-INF/resources/,classpath:/resources/,classpath:/static/,classpath:/public/,file:${web.upload-path}
<body><img th:src="https://segmentfault.com/q/1010000008604243/@{/home-page.png}"/>
</body>
为什么图片无法显示??
回答
使用默认配置即可
静态文件 Spring Boot会默认访问static文件夹
<img th:src="https://segmentfault.com/q/1010000008604243/@{~/home-page.png}"/>
直接放到static下就OK
<img src="https://segmentfault.com/img/xxx.jpg"/>
以上是 【Java】SpringBoot如何在html页面中插入图片? 的全部内容, 来源链接: utcz.com/a/90754.html