初识Struts2_关于namespace属性
<package name="default" extends="struts-default">
<!--
当namespace属性不写,或者为空时该pacakge下的action可以映射任何路径下的action
例如:
localhost:8080/Struts2_Namespace/index.jsp
localhost:8080/Struts2_Namespace/xx/xx/index.jsp
localhost:8080/Struts2_Namespace/xx/abc/cde/index.jsp
以上链接都可以正确访问下面的action
-->
<action name="index"> <result>/index.jsp</result> </action> </package>