Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用第三方 API,它需要在其中一个 JSP 中发送完整的 URL。我需要像这样设置网址
http://localhost:8080/MyWebApp/add.action
我可以实现/MyWebApp/add.action使用<s:action/>
/MyWebApp/add.action
<s:action/>
但是如何http://localhost:8080在 Struts2 中获取呢?
http://localhost:8080
使用s:url标签。包括属性forceAddSchemeHostAndPort="true"。
s:url
forceAddSchemeHostAndPort="true"