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.
JSP の 1 つで完全な URL を送信する必要があるサードパーティ API を使用しています。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"