struts-config.xml~35~
上传用户:dlqqsh
上传日期:2021-11-13
资源大小:7840k
文件大小:3k
源码类别:

OA系统

开发平台:

Java

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.2//EN" "http://struts.apache.org/dtds/struts-config_1_2.dtd">
  3. <struts-config>
  4.   <action-mappings>
  5.     <action path="/userLoginAction" type="officeol.mc.actions.UserLoginAction">
  6.       <forward name="succ" path="/index.jsp" />
  7.       <forward name="err" path="/userlogin.jsp" />
  8.     </action>
  9.     <action path="/popegroupAddAction" type="officeol.mc.actions.PopegroupAddAction">
  10.       <forward name="succ" path="/userpopedomManage.jsp" />
  11.       <forward name="err" path="/popegroupadd.jsp" />
  12.     </action>
  13.     <action path="/popogroupModAction" type="officeol.mc.actions.PopogroupModAction">
  14.       <forward name="succ" path="/popegroupmodify.jsp" />
  15.     </action>
  16.     <action path="/popegroupdelAction" type="officeol.mc.actions.PopegroupdelAction">
  17.       <forward name="succ" path="/popegroupdel.jsp" />
  18.       <forward name="err" path="/popegroupdelete.jsp" />
  19.     </action>
  20.     <action path="/userAddAction" type="officeol.mc.actions.UserAddAction">
  21.       <forward name="succ" path="/usermanage.jsp" />
  22.       <forward name="err" path="/useradd.jsp" />
  23.     </action>
  24.     <action path="/userModAction" type="officeol.mc.actions.UserModAction">
  25.       <forward name="succ" path="/userset.jsp" />
  26.       <forward name="err" path="/usermodify.jsp" />
  27.     </action>
  28.     <action path="/usergroupAddAction" type="officeol.mc.actions.UsergroupAddAction">
  29.       <forward name="succ" path="/usermanage.jsp" />
  30.       <forward name="err" path="/usergroupadd.jsp" />
  31.     </action>
  32.     <action path="/usergroupModAction" type="officeol.mc.actions.UsergroupModAction">
  33.       <forward name="succ" path="/usergroupmod.jsp" />
  34.       <forward name="err" path="/usergroupmodify.jsp" />
  35.     </action>
  36.     <action path="/deparModAction" type="officeol.mc.actions.DeparModAction">
  37.       <forward name="succ" path="/userdeparmod.jsp" />
  38.       <forward name="err" path="/deparmod.jsp" />
  39.     </action>
  40.     <action path="/deparAddAction" type="officeol.mc.actions.DeparAddAction">
  41.       <forward name="succ" path="/userdepar.jsp" />
  42.       <forward name="err" path="/userdeparadd.jsp" />
  43.     </action>
  44.     <action path="/deparuserAddAction" type="officeol.mc.actions.DeparuserAddAction">
  45.       <forward name="succ" path="/deparusermod.jsp" />
  46.     </action>
  47.     <action path="/userPopeAddAction" type="officeol.mc.actions.UserPopeAddAction">
  48.       <forward name="succ" path="/userpopeadd.jsp" />
  49.     </action>
  50.     <action path="/userPopeModAction" type="officeol.mc.actions.UserPopeModAction">
  51.       <forward name="succ" path="/userpopemod.jsp" />
  52.     </action>
  53.   </action-mappings>
  54.   <controller processorClass="officeol.mc.actions.SelfRequestProcessor" />
  55.   <message-resources parameter="ApplicationResources" />
  56.   <plug-in className="org.apache.struts.validator.ValidatorPlugIn">
  57.     <set-property property="pathnames" value="/WEB-INF/validator-rules.xml,/WEB-INF/validation.xml" />
  58.   </plug-in>
  59. </struts-config>