1234567891011121314151617181920212223242526 |
- <?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:p="http://www.springframework.org/schema/p"
- xmlns:context="http://www.springframework.org/schema/context"
- xmlns:task="http://www.springframework.org/schema/task"
- xsi:schemaLocation="http://www.springframework.org/schema/beans
- http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
- http://www.springframework.org/schema/context
- http://www.springframework.org/schema/context/spring-context-3.0.xsd
- http://www.springframework.org/schema/task
- http://www.springframework.org/schema/task/spring-task-3.0.xsd"
- default-lazy-init="false" default-autowire="byName">
- <context:annotation-config />
- <bean class="com.gyee.util.BeanFactoryUtils" autowire="no" />
- <!--<import resource="context.xml"/> -->
- <import resource="job.xml" />
- <import resource="context.xml" />
- <import resource="context2.xml" />
- <task:annotation-driven scheduler="qbScheduler"
- mode="proxy" />
- <task:scheduler id="qbScheduler" pool-size="10" />
-
- <context:component-scan base-package="com.gyee" />
- </beans>
|