struts2構成ファイルがあり、プロパティによってはURLの設定に問題があります。
<action name="ABC" class="myAction" method="myMethod" >
<result name="direct" type="redirectAction">
<param name="namespace">/navigate</param>
<param name="actionName">logout</param>
</result>
<result name="nonDirect" type="redirectAction">{url.set.in.properties}</result>
</action>
なぜそれが必要なのですか?このURLはdiff環境(QA、UAT、prodなど)で異なる可能性があるためです。
それで、struts configでプロパティ設定を使用することは可能ですか(たとえば、Springコンテキストファイルで使用するように)?
もう1つの問題は、URLが「www.google.com」のようにグローバルなものでなければならないという事実です。現在、間違ったURL「http://localhost/package_name_here/http://www.goggle.com」にリダイレクトされます