标签:使用 语法 bsp localhost xxxx oca tom mave war包
语法格式如下:
<a th:href="@{/channel/page/add}">添加渠道 </a>
<a href="@{/channel/page/add}">添加渠道 </a>
在默认项目路径为空时,打Jar包单独运行时。二者效果一致。
在使用Maven内嵌Tomcat或打War包部署到Servlet容器,或者在项目内执行App启动类,且有配置项目路径时。
二者区别如下:
href始终从端口开始作为根路径,如http://localhost:8080/channel/page/add
th:href会寻找项目路径作为根路径,如http://localhost:8080/dx/channel/page/add
其他参考:
th:onclick="@{‘location.href=\‘‘ + ${#httpServletRequest.getContextPath()} + ‘/xxxx\‘}"
标签:使用 语法 bsp localhost xxxx oca tom mave war包
原文地址:https://www.cnblogs.com/q924152020/p/10602807.html