Struts2 Version 2.0.x handling unknown actions - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T18:32:14Zhttp://stackoverflow.com/feeds/question/889322http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/889322/struts2-version-2-0-x-handling-unknown-actions0Struts2 Version 2.0.x handling unknown actionsVincent Ramdhanie2009-05-20T17:51:47Z2009-05-20T17:59:44Z
<p>In struts2 version 2.1.x there is a new UnknownHandler that kicks in when a request arrives and the action name cannot be found. </p>
<p>The question is...what is the equivalent mechanism if one exists in 2.0.x versions? </p>
<p>I recently noticed from examining the log files that exceptions are thrown when the action name is not properly resolved and this is actually causing some problems. Is there an application wide setting for handling this? </p>
http://stackoverflow.com/questions/889322/struts2-version-2-0-x-handling-unknown-actions/889352#8893521Answer by steamer25 for Struts2 Version 2.0.x handling unknown actionssteamer252009-05-20T17:59:44Z2009-05-20T17:59:44Z<p>Wildcard default or action default?</p>
<p><a href="http://struts.apache.org/2.0.14/docs/action-configuration.html#ActionConfiguration-WildcardMethod" rel="nofollow">http://struts.apache.org/2.0.14/docs/action-configuration.html#ActionConfiguration-WildcardMethod</a></p>
<pre><code><action name="*">
<result>/{1}.jsp</result>
</action>
</code></pre>
<p>...</p>
<pre><code><package name="Hello" extends="action-default">
<default-action-ref name="UnderConstruction">
<action name="UnderConstruction">
<result>/UnderConstruction.jsp</result>
</action>
...
</code></pre>