Java Mailing List Archive

http://www.junlu.com/

Home » Home (12/2007) » Struts 2 »

There is no Action mapped for action name HelloWorld. - [unknown
location]

meeboo

2007-03-07

Replies:


Hey all

I recently decided to evaluate Struts2 for a big project, but am having
difficulties mapping actions. I get the "There is no Action mapped..." error
when I try running the blank struts2 application.

Here's my example.xml

<package name="example" namespace="com/bubbleclip/web/example"
extends="struts-default">

    <action name="HelloWorld"
class="com.bubbleclip.web.example.HelloWorld">
       <result>/web/example/HelloWorld.jsp</result>
    </action>

    <action name="Login_*" method="{1}"
class="com.bubbleclip.web.example.Login">
       <result name="input">/example/Login.jsp</result>
       <result type="redirect-action">Menu</result>
    </action>

    <action name="*" class="com.bubbleclip.web.example.ExampleSupport">
       <result>/example/{1}.jsp</result>
    </action>

    <!-- Add actions here -->
  </package>

My directory tree looks like the following:
application/src/com/bubbleclip/web/example/ExampleSupport.java
application/src/com/bubbleclip/web/example/HelloWorld.java
application/src/com/bubbleclip/web/example/Login.java
application/src/com/bubbleclip/web/example/Login-validation.xml
application/src/com/bubbleclip/web/example/Package.properties
application/src/example.xml
application/src/struts.xml
application/web/index.html
application/web/example/HelloWorld.jsp
application/web/WEB-INF/web.xml
--
Sent from the Struts - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@(protected)
For additional commands, e-mail: user-help@(protected)

©2008 junlu.com - Jax Systems, LLC, U.S.A.