我无法在春季通过Thymeleaf以HTML显示图像

时间:2019-06-16 05:28:52

标签: spring thymeleaf

我从Spring in Action 5中做一个例子。我尝试显示带有图像的主页。当我启动localhost:8080时,我看到了主页,但是没有看到图像。

我从书中输入HTML:

git add .

然后在Eclipse的项目中添加一个图像:project explorer

添加HomeController类:

git commit -m "new commit"

在显示中,我得到下一个:enter image description here

2 个答案:

答案 0 :(得分:0)

我发现了为什么它不起作用。

当我在Eclipse中添加图像时,我在src / main / resources / static / images上单击了鼠标右键,然后单击New-File-Link到文件系统中的文件...我不在其中移动图像我的项目目录。我只是创建要在文件系统中的图像上进行链接。

So I added an image. It is not right...

答案 1 :(得分:0)

我遇到了同样的问题,但是使用了Intelij IDEA。为了解决这个问题,我改变了这一行:
here<img th:src="@{/images/TacoCloud.png}"/><img src="../static/images/TacoCloud.png"/>

..-指parent folder

注意:“ 链接到文件系统中的文件”选项doesn't support Intelij IDEA