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.
struts2を使用してアプリケーションを設計しましたが、たとえば拡張機能を削除する必要があります
www.myweb.com/register.action
.actionを削除して、登録をクリックすると、アクション拡張子なしでwww.myweb.com/registerを呼び出す方法を教えてください。
私は以下を使用します
<a href="<s:url action="register"/>">Register</a>
私は答えを見つけました。支柱の構成を次のように変更する必要があります。
<struts> <constant name="struts.action.extension" value=""/> <package name="default" extends="struts-default"> <action name="register"> <result type="tiles">register</result> </action> </package> </struts>