📄 d0d1a84d8f2b001d10dcc9e30c9e2239
字号:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.1//EN" "http://jakarta.apache.org/struts/dtds/struts-config_1_1.dtd">
<struts-config>
<form-beans>
<form-bean name="userForm" type="com.qrsx.qrsxcrm.form.UserForm"/>
<form-bean name="deptForm" type="com.qrsx.qrsxcrm.form.DeptForm"/>
<form-bean name="dutyForm" type="com.qrsx.qrsxcrm.form.DutyForm"/>
<form-bean name="employeeForm" type="com.qrsx.qrsxcrm.form.EmployeeForm"/>
</form-beans>
<action-mappings>
<action path="/employee"
name="employeeForm"
type="com.qrsx.qrsxcrm.action.EmployeeAction"
parameter="p"
input="/logon.jsp"
scope="request"
validate="false">
<forward name="edit" path="/system/employeeForm.jsp"/>
<forward name="list" path="/system/employeeList.jsp"/>
<forward name="info" path="/system/employeeInfo.jsp"/>
<forward name="success" path="/employee.do?p=list" redirect="true"/>
</action>
<action path="/user"
name="userForm"
type="com.qrsx.qrsxcrm.action.UserAction"
parameter="p"
input="/logon.jsp"
scope="request"
validate="false">
<forward name="edit" path="/system/userForm.jsp"/>
<forward name="list" path="/system/userlist.jsp"/>
<forward name="info" path="/system/userInfo.jsp"/>
<forward name="success" path="/user.do?p=list" redirect="true"/>
</action>
<action path="/dept"
name="deptForm"
type="com.qrsx.qrsxcrm.action.DeptAction"
parameter="p"
input="/logon.jsp"
scope="request"
validate="false">
<forward name="edit" path="/system/deptForm.jsp"/>
<forward name="list" path="/system/deptList.jsp"/>
<forward name="info" path="/system/deptInfo.jsp"/>
<forward name="success" path="/dept.do?p=list" redirect="true"/>
</action>
<action path="/duty"
name="dutyForm"
type="com.qrsx.qrsxcrm.action.DutyAction"
parameter="p"
input="/logon.jsp"
scope="request"
validate="false">
<forward name="edit" path="/system/dutyForm.jsp"/>
<forward name="list" path="/system/dutyList.jsp"/>
<forward name="info" path="/system/dutyInfo.jsp"/>
<forward name="success" path="/duty.do?p=list" redirect="true"/>
</action>
<action path="/set"
name="setForm"
type="com.qrsx.qrsxcrm.action.SetAction"
parameter="p"
input="/logon.jsp"
scope="request"
validate="false">
<forward name="edit" path="/system/setForm.jsp"/>
<forward name="list" path="/system/setList.jsp"/>
<forward name="success" path="/set.do?p=list" redirect="true"/>
</action>
</action-mappings>
<message-resources parameter="resources.ApplicationResources"/>
</struts-config>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -