我在application.properties文件中添加了以下命令。
server.contextPath=/SpringBootOracle
现在,我在html页面中有一个超链接,如下所示
<a href="/product/new">New Product</a>
每次单击链接时,它都会跳转到
localhost:8080/product/new
有什么方法可以将应用程序上下文附加到链接上,以便我能到达下面?
localhost:8080/SpringBootOracle/product/new
答案 0 :(得分:1)
如果您使用百里香叶,请尝试以下方法:
<a th:href="@{/product/new}">New Product</a>