⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 21b5b9b3289c001d1b4081603925bb58

📁 j2ee源码
💻
字号:
<?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>

	<!-- Data Sources -->
	<data-sources>
	</data-sources>

	<!-- Form Beans -->
	<form-beans>
		<form-bean name="logonForm" type="com.leeman.wkexs.logon.web.LogonForm">
    	</form-bean>
     	<form-bean name="userProfileSearchForm" type="com.leeman.wkexs.master.userprofile.web.SearchForm">
    	</form-bean>
    	<form-bean name="userProfileMainForm" type="com.leeman.wkexs.master.userprofile.web.MainForm">
    	</form-bean>
    	<form-bean name="companySearchForm" type="com.leeman.wkexs.master.company.web.SearchForm">
   		</form-bean>
    	<form-bean name="companyMainForm" type="com.leeman.wkexs.master.company.web.MainForm">
    	</form-bean>
    	<form-bean name="companySearchListForm" type="com.leeman.wkexs.master.company.web.CompanySearchForm">
   		</form-bean>    	
    	<form-bean name="roleMgtSearchForm" type="com.leeman.wkexs.master.rolemgt.web.SearchForm">
    	</form-bean>
    	<form-bean name="roleMgtMainForm" type="com.leeman.wkexs.master.rolemgt.web.MainForm">
    	</form-bean>
    	<form-bean name="baseForm" type="com.leeman.wkexs.web.base.BaseForm">
    	</form-bean>       
	</form-beans>

	<!-- Global Exceptions -->
	<global-exceptions>
		<exception type="java.lang.Exception" handler="com.leeman.wkexs.web.base.BaseException" scope="request" path="/common/systemerror.jsp" key="errors.systemError">
		</exception>
		<exception type="com.leeman.wkexs.common.security.exceptions.NotLoggedOnException" handler="com.leeman.wkexs.common.security.NotLoggedOnExceptionHandler" key="errors.notLoggedOn" path="/common/notLoggedOn.jsp" scope="request">
		</exception>
	</global-exceptions>

	<!-- Global Forwards -->
	<global-forwards>
		<forward name="logon" path="/logon/logon.jsp">
		</forward>
		<forward name="logout" path="/logon/logout.jsp">
		</forward>
		<forward name="welcome" path="/logon/welcome.jsp">
		</forward>
		<forward name="notAuthorized" path="/common/notAuthorized.jsp">
		</forward>
		<forward name="logonOption" path="/logon/logonOptionPage.jsp">
		</forward>
		<forward name="yesNo" path="/common/yesNo.do?action=question">
		</forward>
	</global-forwards>

	<!-- Action Mappings -->
	<action-mappings>
	 	<action path="/common/yesNo" type="com.leeman.wkexs.common.web.YesNoAction" name="baseForm" input="/common/yesNo.jsp">
    	</action>
		<action name="logonForm" path="/logon/logon" scope="session" type="com.leeman.wkexs.logon.web.LogonAction">
    		<forward name="loggedOnPage" path="/logon/loggedOnPage.jsp" redirect="true">
    		</forward>
    	</action>
    	<action path="/master/userprofile/search" input="/master/userprofile/search.jsp" type="com.leeman.wkexs.master.userprofile.web.UserProfileSearchAction" name="userProfileSearchForm" scope="request">
    		<forward name="init" path="/master/userprofile/search.do?action=newSearch">
    		</forward>
    		<forward name="addNew" path="/master/userprofile/main.do?action=addNew">
    		</forward>
    		<forward name="search" path="/master/userprofile/search.jsp">
    		</forward>
    		<forward name="selectRecord" path="/master/userprofile/main.do?action=query">
    		</forward>
    	</action>
    	<action path="/master/userprofile/main" name="userProfileMainForm" type="com.leeman.wkexs.master.userprofile.web.UserProfileMainAction" scope="request" input="/master/userprofile/main.jsp">
    		<forward name="returnToSearch" path="/master/userprofile/search.do?action=returnToSearch" redirect="false">
    		</forward>
    		<forward name="main" path="/master/userprofile/main.jsp">
    		</forward>
    	</action>
    	<action path="/master/userprofile/searchlist" type="com.leeman.wkexs.master.userprofile.web.UserProfileSearchListAction" name="userProfileSearchForm" scope="request" input="/master/userprofile/searchlist.jsp">
    	</action>
    	<action name="companySearchForm" path="/master/company/search" scope="request" type="com.leeman.wkexs.master.company.web.CompanySearchAction" input="/master/company/search.jsp">
    		<forward name="init" path="/master/company/search.do?action=newSearch">
    		</forward>
    		<forward name="addNew" path="/master/company/main.do?action=addNew">
    		</forward>
    		<forward name="search" path="/master/company/search.jsp">
    		</forward>
    		<forward name="selectRecord" path="/master/company/main.do?action=query">
    		</forward>
    	</action>
    	<action name="companyMainForm" path="/master/company/main" scope="request" type="com.leeman.wkexs.master.company.web.CompanyMainAction" input="/master/company/main.jsp">
    		<forward name="returnToSearch" path="/master/company/search.do?action=returnToSearch">
    		</forward>
    		<forward name="main" path="/master/company/main.jsp">
    		</forward>
    	</action>
    	<action path="/master/company/searchlist" type="com.leeman.wkexs.master.company.web.CompanySearchListAction" name="companySearchListForm" scope="request" input="/master/company/searchlist.jsp">
    	</action>
    	<action path="/master/rolemgt/search" input="/master/rolemgt/search.jsp" type="com.leeman.wkexs.master.rolemgt.web.RoleMgtSearchAction" name="roleMgtSearchForm" scope="request">
    		<forward name="init" path="/master/rolemgt/search.do?action=newSearch">
    		</forward>
    		<forward name="addNew" path="/master/rolemgt/main.do?action=addNew">
    		</forward>
    		<forward name="search" path="/master/rolemgt/search.jsp">
    		</forward>
    		<forward name="selectRecord" path="/master/rolemgt/main.do?action=query">
    		</forward>
    	</action>
    	<action path="/master/rolemgt/main" name="roleMgtMainForm" type="com.leeman.wkexs.master.rolemgt.web.RoleMgtMainAction" scope="request" input="/master/rolemgt/main.jsp">
    		<forward name="returnToSearch" path="/master/rolemgt/search.do?action=returnToSearch" redirect="false">
    		</forward>
    		<forward name="main" path="/master/rolemgt/main.jsp">
    		</forward>
    	</action>
    	<action path="/master/rolemgt/searchlist" type="com.leeman.wkexs.master.rolemgt.web.RoleMgtSearchListAction" name="roleMgtSearchForm" scope="request" input="/master/rolemgt/searchlist.jsp">
    	</action>   	  	  	   	   	
	</action-mappings>

	<!-- Message Resources -->
	<message-resources parameter="com.leeman.wkexs.resources.ApplicationResources">
	</message-resources>
	<plug-in className="com.leeman.wkexs.common.plugin.SysXlatItemCaching">
	</plug-in>
</struts-config>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -