首页 > 代码库 > Structs 在Struts.xml中配置action时,action的name属性最好首字母大写

Structs 在Struts.xml中配置action时,action的name属性最好首字母大写

<action name="Login" class="com.struts_learn.action.LoginAction">
<result name="input">/login.jsp</result>
<result name="error">/error.jsp</result>
<result name="success">/success.jsp</result>
</action>

 

首字母小写容易出问题

Structs 在Struts.xml中配置action时,action的name属性最好首字母大写