mystruts.xml配置文件属性介绍
1.package标签的中的namespace属性
<package name="default" extends="struts-default" namespace="/">
<action name="helloword" class="day01.helloword">
<result name="success">/WEB-INF/index.jsp</result>
</action>
</package>
namespace默认是“/”这个命名空间,也可以自定义,例如“/mytest”,
当命名空间为自定义时,访问url:http://localhost:8080/test/mytest/helloword.action,(此处test为项目名)如果写掉了没有mytest则会报找不到hellword这个action
当命名空间为默认时:访问url:http://localhost:8080/test/helloword.action
2.result标签中的name和type属性
<action name="hello" class="hello.helloAction" method="excute">
<!--result返回的是配置结果集
name与方法的返回值匹配,默认是success
type:表示结果类型,默认值为dispatcher(转发到结果)
-->
<result name="success" type="dispatcher">/index.jsp</result>
</action>