struts管理部署文件
struts-config.xml
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE struts-config PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 1.2//EN"
"http://jakarta.apache.org/struts/dtds/struts-config_1_2.dtd">
<struts-config>
<data-sources />
<form-beans>
<form-bean name="formBean1" type="hb.UserForm"/>
</form-beans>
<global-forwards>
<forward name="failed" path="/error.jsp"/>
<forward name="successed" path="/right.jsp"/>
</global-forwards>
<action-mappings>
<action path="/login" type="hb.LoginAction" name="formBean1" scope="request" validate="false" input="/error.jsp"/>
<action path="/regist" forward="/addUser.jsp"/>
</action-mappings>
<message-resources parameter="hb.MyResource"/>
</struts-config>
lunzi
2006-05-23 23:55:47
评论:0
阅读:387
引用:0
