himed_batch_config.xml 1.1 KB

123456789101112131415161718192021222324252627282930
  1. <?xml version='1.0' encoding='euc-kr'?>
  2. <!DOCTYPE services
  3. PUBLIC "-//Hyundai Information Technology//DTD Live Services Config 0.1//EN"
  4. "file:///D:/LiveTest/Live/live-service-config.dtd">
  5. <services module="batch" pre-init="false">
  6. <service name="BatchLogger"
  7. interface="kr.co.hit.live.batch.BatchLogger"
  8. class="himed.his.com.lib.batch.BatchLogger"
  9. activate="true"
  10. singleton="true">
  11. </service>
  12. <service name="BatchScheduler"
  13. class="himed.his.hit.batch.crond.BatchScheduler"
  14. activate="true"
  15. singleton="true">
  16. <property name="dao" ref="BatchSchedulerDAO"/>
  17. </service>
  18. <service name="BatchSchedulerDAO"
  19. interface="himed.his.hit.batch.crond.dao.BatchSchedulerDAO"
  20. class="himed.his.hit.batch.crond.dao.BatchSchedulerDAOImpl"
  21. activate="true"
  22. singleton="true">
  23. <property name="datasource" ref="jdbc.nxcomdb"/>
  24. <property name="sql" value="sqls/batchschedulerdao_sqls.xml"/>
  25. </service>
  26. </services>