123456789101112131415161718192021222324252627282930 |
- <?xml version='1.0' encoding='euc-kr'?>
- <!DOCTYPE services
- PUBLIC "-//Hyundai Information Technology//DTD Live Services Config 0.1//EN"
- "file:///D:/LiveTest/Live/live-service-config.dtd">
-
- <services module="batch" pre-init="false">
-
- <service name="BatchLogger"
- interface="kr.co.hit.live.batch.BatchLogger"
- class="himed.his.com.lib.batch.BatchLogger"
- activate="true"
- singleton="true">
- </service>
- <service name="BatchScheduler"
- class="himed.his.hit.batch.crond.BatchScheduler"
- activate="true"
- singleton="true">
- <property name="dao" ref="BatchSchedulerDAO"/>
- </service>
-
- <service name="BatchSchedulerDAO"
- interface="himed.his.hit.batch.crond.dao.BatchSchedulerDAO"
- class="himed.his.hit.batch.crond.dao.BatchSchedulerDAOImpl"
- activate="true"
- singleton="true">
- <property name="datasource" ref="jdbc.nxcomdb"/>
- <property name="sql" value="sqls/batchschedulerdao_sqls.xml"/>
- </service>
- </services>
|