Struts2 Version 2.0.x handling unknown actions - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T18:32:14Z http://stackoverflow.com/feeds/question/889322 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/889322/struts2-version-2-0-x-handling-unknown-actions 0 Struts2 Version 2.0.x handling unknown actions Vincent Ramdhanie 2009-05-20T17:51:47Z 2009-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#889352 1 Answer by steamer25 for Struts2 Version 2.0.x handling unknown actions steamer25 2009-05-20T17:59:44Z 2009-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>&lt;action name="*"&gt; &lt;result&gt;/{1}.jsp&lt;/result&gt; &lt;/action&gt; </code></pre> <p>...</p> <pre><code>&lt;package name="Hello" extends="action-default"&gt; &lt;default-action-ref name="UnderConstruction"&gt; &lt;action name="UnderConstruction"&gt; &lt;result&gt;/UnderConstruction.jsp&lt;/result&gt; &lt;/action&gt; ... </code></pre>