There is no Action mapped for namespace / and action name HelloWorld.
这是我的struts.xml
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"
http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<include file="struts-default.xml"></include>
<package name="tutorial" namespace="/" extends="struts-default.xml">
<action name="HelloWorld" class="tutorial.HelloWorld" type="">
<result>/HelloWorld.jsp</result>
</action>
</package>
</struts>