| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <?xml version="1.0" encoding="UTF-8"?>
- <beans xmlns="http://www.springframework.org/schema/beans"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
- xmlns:tx="http://www.springframework.org/schema/tx" xmlns:aop="http://www.springframework.org/schema/aop"
- xsi:schemaLocation="
- http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.3.xsd
- http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.3.xsd
- http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.3.xsd
- http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.3.xsd">
- <!-- 自动扫描 -->
- <context:component-scan base-package="com.leanwo" />
- <bean id="applicationSettingCache" class="com.leanwo.management.model.ApplicationSettingCache">
- <property name="settings">
- <list>
- <ref bean="applicationSetting1" />
- <ref bean="applicationSetting2" />
- <ref bean="applicationSetting3" />
- <ref bean="applicationSetting4" />
- <ref bean="applicationSetting5" />
- <ref bean="applicationSetting6" />
- <ref bean="applicationSetting7" />
- </list>
- </property>
- </bean>
- <bean id="applicationSetting1" class="com.leanwo.management.model.ApplicationSetting">
- <property name="name" value="Prodog服务程序"></property>
- <property name="startBatFile" value="C:\Users\YangZhiJie\Desktop\Servers\DingTalk_Server_20171218\start.bat"></property>
- <property name="stopBatFile" value="C:\Users\YangZhiJie\Desktop\Servers\DingTalk_Server_20171218\stop.bat"></property>
- </bean>
- <bean id="applicationSetting2" class="com.leanwo.management.model.ApplicationSetting">
- <property name="name" value="报表服务程序"></property>
- <property name="startBatFile" value="C:\Users\YangZhiJie\Desktop\Servers\DingTalk_Server_20171218\start.bat"></property>
- <property name="stopBatFile" value="C:\Users\YangZhiJie\Desktop\Servers\DingTalk_Server_20171218\stop.bat"></property>
- </bean>
- <bean id="applicationSetting3" class="com.leanwo.management.model.ApplicationSetting">
- <property name="name" value="工作流服务程序"></property>
- <property name="startBatFile" value="C:\Users\YangZhiJie\Desktop\Servers\DingTalk_Server_20171218\start.bat"></property>
- <property name="stopBatFile" value="C:\Users\YangZhiJie\Desktop\Servers\DingTalk_Server_20171218\stop.bat"></property>
- </bean>
- <bean id="applicationSetting4" class="com.leanwo.management.model.ApplicationSetting">
- <property name="name" value="钉钉服务程序"></property>
- <property name="startBatFile" value="C:\Users\YangZhiJie\Desktop\Servers\DingTalk_Server_20171218\start.bat"></property>
- <property name="stopBatFile" value="C:\Users\YangZhiJie\Desktop\Servers\DingTalk_Server_20171218\stop.bat"></property>
- </bean>
- <bean id="applicationSetting5" class="com.leanwo.management.model.ApplicationSetting">
- <property name="name" value="微信服务程序"></property>
- <property name="startBatFile" value="C:\Users\YangZhiJie\Desktop\Servers\DingTalk_Server_20171218\start.bat"></property>
- <property name="stopBatFile" value="C:\Users\YangZhiJie\Desktop\Servers\DingTalk_Server_20171218\stop.bat"></property>
- </bean>
- <bean id="applicationSetting6" class="com.leanwo.management.model.ApplicationSetting">
- <property name="name" value="中间件程序"></property>
- <property name="startBatFile" value="C:\Users\YangZhiJie\Desktop\Servers\DingTalk_Server_20171218\start.bat"></property>
- <property name="stopBatFile" value="C:\Users\YangZhiJie\Desktop\Servers\DingTalk_Server_20171218\stop.bat"></property>
- </bean>
- <bean id="applicationSetting7" class="com.leanwo.management.model.ApplicationSetting">
- <property name="name" value="抓拍程序"></property>
- <property name="startBatFile" value="C:\Users\YangZhiJie\Desktop\Servers\DingTalk_Server_20171218\start.bat"></property>
- <property name="stopBatFile" value="C:\Users\YangZhiJie\Desktop\Servers\DingTalk_Server_20171218\stop.bat"></property>
- </bean>
-
- <bean id="springUtil" class="org.leanwo.management.util.SpringUtil" />
- </beans>
|