Struts2中默认action

Struts2中存在默认action的概念,如下述配置:

<package name="test" extends="struts-default" namespace="/">
    	<default-action-ref name="test"></default-action-ref>
        <action name="test">
            <result>/test.jsp</result>
        </action>
    </package>

当访问http://localhost:8080/webAppName 时,会自动导航默认action=“test”指定的页面,前提是不存在index.jsp页面。因为web.xml文件是项目总的配置文件,程序会首先解析web.xml文件,如果没找到index.jsp,会找到struts.xml文件中对应的默认action,默认action并不是不存在。如果访问了其他一个不存在的action,会自动导向默认的action。

如果存在index.jsp页面,当进行上述访问时,会导向index.jsp页面,如果访问http://localhost:8080/webAppName/xxx等随意一个不存在的action时,会自动导向默认action指定的页面。即会根据之前文章的介绍会自动搜索整个struts.xml文件进行查找。

你可能感兴趣的:(struts2)