| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <?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:tx="http://www.springframework.org/schema/tx" xmlns:aop="http://www.springframework.org/schema/aop"
- 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-4.0.xsd
- http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
- http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
- http://www.springframework.org/schema/aop
- http://www.springframework.org/schema/aop/spring-aop-4.0.xsd
- http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-4.0.xsd">
- <!-- 扫描service包下所有使用注解的类型 -->
- <context:component-scan base-package="com.izouma.awesomeadmin.service" />
- <!-- 配置事务管理器 -->
- <bean id="transactionManager"
- class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
- <!-- 注入数据库连接池 -->
- <property name="dataSource" ref="dataSource" />
- </bean>
-
- <!-- 配置基于注解的声明事务 默认使用注解来管理事务行为 -->
- <tx:annotation-driven transaction-manager="transactionManager" />
- <task:annotation-driven/> <!-- 定时器开关-->
- <!--自动开始房间定时任务-->
- <bean id="houseInfoTask" class="com.izouma.awesomeadmin.web.HouseInfoController"></bean>
- <task:scheduled-tasks>
- <task:scheduled ref="houseInfoTask" method="autoBegin" cron="0 0/5 * * * ? "/>
- <task:scheduled ref="houseInfoTask" method="autoNoStartPlay" cron="0 0/1 * * * ? "/>
- </task:scheduled-tasks>
- </beans>
|