如何使用Thymeleaf / Spring / Eclipse按&#39; <img th:src="" '=""

时间:2018-01-11 14:03:36

标签: java spring thymeleaf

="" 问题显示图像:

<img src="@{/images/0.jpg}" alt="error occured"/>

我正在使用Eclipse,文件夹图片位于 src/main/resources/static/images 和Thymeleaf模板中,该模板使用:

<img src="@{/images/0.jpg}" alt="error occured"/>

位于文件夹中: src/main/resources/templates

图片例如:1.jpg

1 个答案:

答案 0 :(得分:0)

不,th:src是&#39; Thymeleaf Standard Dialect&#39;。如果您的项目设置正确,spring / thymeleaf将能够通过给定的相对路径本身在Web服务器(例如Tomcat)上找到您的图像。您不需要任何自己的控制器。

我希望这会对您有所帮助:https://stackoverflow.com/a/29475520/9158389