<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="/schema/beans" xmlns:xsi="http:///2001/XMLSchema-instance"
xmlns:jee="/schema/jee"
xmlns:tx="/schema/tx"
xmlns:context="/schema/context"
xmlns:aop="/schema/aop"
xmlns:task="/schema/task"
xsi:schemaLocation="/schema/beans /schema/beans/spring-beans-3.
/schema/tx /schema/tx/spring-tx-3.
/schema/jee /schema/jee/spring-jee-3.
/schema/context /schema/context/spring-context-3.
/schema/aop /schema/aop/spring-aop-3.
/schema/task /schema/task/spring-task-3."
default-lazy-init="true" default-autowire="byName">
<context:annotation-config />
<context:component-scan base-package="" />
<task:annotation-driven />
<task:scheduled-tasks scheduler="myScheduler">
<task:scheduled ref="scheduledTaskManager" method="autoCardCalculate" cron="1/5 * * * * *"/>
</task:scheduled-tasks>
<task:scheduler id="myScheduler" pool-size="10"/>
<aop:aspectj-autoproxy />
<bean id="propertyConfigurer" class="">
<property name="locations">
<list>
<value>classpath:</value>
</list>
</property>
</bean>
</beans>