将应用程序上下文路径追加到Spring Boot应用程序中的超链接

时间:2018-08-10 05:21:34

标签: spring-boot applicationcontext

我在application.properties文件中添加了以下命令。

server.contextPath=/SpringBootOracle

现在,我在html页面中有一个超链接,如下所示

<a href="/product/new">New Product</a>

每次单击链接时,它都会跳转到

localhost:8080/product/new

有什么方法可以将应用程序上下文附加到链接上,以便我能到达下面?

localhost:8080/SpringBootOracle/product/new

1 个答案:

答案 0 :(得分:1)

如果您使用百里香叶,请尝试以下方法:

<a th:href="@{/product/new}">New Product</a>