Thymeleaf和Spring Boot不显示图像

时间:2018-07-25 15:44:20

标签: java image spring-mvc spring-boot thymeleaf

用百里香做我的Spring Boot应用程序,而不是图像,我仅看到图像图标。我怎样才能解决这个问题? 图片在static-> images文件夹中

<table class="table table-striped">
    <tr th:each="message : ${messages}">
        <td th:text="${message.id}"></td>
        <td th:text="${message.text}"></td>
        <td th:text="${message.tag}"></td>
        <td><img th:src="@{/images/thymeleaf.png}"/></td>
    </tr>
</table>

1 个答案:

答案 0 :(得分:0)

使用这样的配置。

public void addResourceHandlers(ResourceHandlerRegistry registry) {
    registry.addResourceHandler("/img/**").addResourceLocations("file:resources/","file:images/","file:" + uploadPath + "/");
    registry.addResourceHandler("/static/**").addResourceLocations("classpath:/static/");
}

添加要显示图像的所有位置。 / 之后不要使用 /