当我尝试在另一个Spring Boot应用程序中加载图像时,它们在adminPortal应用程序中存在图像

时间:2018-10-13 20:14:58

标签: hibernate spring-boot thymeleaf

在书店前的

application.properties

adminPath=http://localhost:8081/adminPortal

这是我的视图页面,必须在其中加载  路径正确,但是我t know why id doesn不工作

 <tbody>
                        <tr class="book-item" data-th-each="book : ${bookList}">
                            <td>
                             <div class="col-xs-9 col-xs-offset-3" th:if="book == null"><h2>No books found</h2></div>
                                <div th:if="book != null">
                                    <div class="row">
                                        <div class="col-xs-3">
                                            <img class="img-responsive" alt ="book-img"
                                              th:src="#{adminPath}+@{/image/book/}+${book.id}+'.png'" />
                                        </div>

如果有人帮助。

0 个答案:

没有答案