1234567891011121314151617181920212223242526272829303132333435 |
- <?xml version="1.0" encoding="UTF-8" ?>
- <!DOCTYPE struts PUBLIC
- "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
- "http://struts.apache.org/dtds/struts-2.0.dtd">
- <struts>
- <constant name="struts.objectFactory" value="spring" />
- <constant name="struts.enable.DynamicMethodInvocation" value="true" />
- <constant name="struts.devMode" value="true" />
- <constant name="struts.custom.i18n.resources" value="resource.application" />
- <constant name="struts.ui.theme" value="simple" />
- <!-- 公共功能 -->
- <include file="/com/sooka/common/config/struts_common.xml" />
- <include file="/com/sooka/codes/config/struts_codes.xml" />
- <include file="/com/sooka/generate/config/struts_generate.xml" />
- <!-- 例子 -->
- <include file="/com/sooka/nsos/system/login/config/struts_login.xml" />
- <include file="/com/sooka/nsos/system/organization/config/struts_dept.xml" />
- <include file="/com/sooka/nsos/system/employee/config/struts_employee.xml" />
- <include file="/com/sooka/nsos/system/module/config/struts_Module.xml" />
- <include file="/com/sooka/nsos/system/role/config/struts_Role.xml" />
- <include file="/com/sooka/nsos/system/permissions/config/struts_Permissions.xml" />
- <!-- jquery case -->
- <include file="/com/sooka/nsos/jcase/config/struts_JCase.xml" />
- <!-- dtree case -->
- <include file="/com/sooka/nsos/org/config/struts_org.xml" />
- <!-- fileUpLoad case -->
- <include file="/com/sooka/nsos/fileUpload/config/struts_fileUpload.xml" />
- <!-- trsdata -->
- <include file="/com/sooka/app_trsdata/trsdata/config/struts_trsdata.xml" />
- <!-- applogin -->
- <include file="/com/sooka/app_trsdata/login/config/struts_login.xml" />
- <!-- 办事服务接口 -->
- <include file="/com/sooka/bsfw/config/struts_bsfw.xml" />
- </struts>
|