首页 > 代码库 > SSH 框架打开项目自动执行action的一种方法

SSH 框架打开项目自动执行action的一种方法

web.xml不配置任何东西

<welcome-file-list>
	   <welcome-file></welcome-file>
</welcome-file-list></span>

如上,为什么不把<welcome-file></welcome-file>也出掉,因为出掉之后会提示标签不完整.


struts.xml如下

<action name="" class="index">
            <result name="input">/login.jsp</result>
            <result name="error">/error.jsp</result>
            <result name="success">/index.jsp</result>
</action>
name="",class="index"之所以写这样而不写class="action.index.class",是SSH框架的功能,是action的实例在Spring容器中的对象名.</span>
重要的是<result name="success>/index.jsp</result>
部分,index.jsp是web项目首页.

名字叫index的action的返回字符串需是success, 和红色部分相匹配.像这样打开就会自动执行action

技术分享

如果直接执行index.jsp的话action不会自动执行的!!

大家还有什么方法吗?分享分享呗!


SSH 框架打开项目自动执行action的一种方法