applicationContext.xml 831 B

1234567891011121314151617
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xmlns:p="http://www.springframework.org/schema/p"
  5. xmlns:context="http://www.springframework.org/schema/context"
  6. xsi:schemaLocation="http://www.springframework.org/schema/beans
  7. http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
  8. http://www.springframework.org/schema/context
  9. http://www.springframework.org/schema/context/spring-context-3.0.xsd"
  10. default-lazy-init="false" default-autowire="byName">
  11. <bean class="com.hcks.cmfds.commons.util.BeanFactoryUtils" lazy-init="false" autowire="no"/>
  12. <import resource="bean-config/context.xml"/>
  13. <import resource="bean-config/job.xml"/>
  14. <context:component-scan base-package="com.hcks.cmfds"/>
  15. </beans>