SpringMvc自动任务调度之task实现
Posted lljliulljn
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringMvc自动任务调度之task实现相关的知识,希望对你有一定的参考价值。
<?
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:context
=
"http://www.springframework.org/schema/context"
xmlns:jdbc
=
"http://www.springframework.org/schema/jdbc"
xmlns:jee
=
"http://www.springframework.org/schema/jee"
xmlns:tx
=
"http://www.springframework.org/schema/tx"
xmlns:util
=
"http://www.springframework.org/schema/util"
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/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-4.0.xsd
http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-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/util http://www.springframework.org/schema/util/spring-util-4.0.xsd
http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-4.0.xsd">
<
description
>Spring Configuration</
description
>
<
context:component-scan
base-package
=
"task"
/>
<!-- 配置任务线性池 -->
<
task:executor
id
=
"executor"
pool-size
=
"10"
/>
<
task:scheduler
id
=
"scheduler"
pool-size
=
"10"
/>
<
task:annotation-driven
scheduler
=
"scheduler"
executor
=
"executor"
proxy-target-class
=
"true"
/>
<!-- 配置文件实现 如果使用配置文件实现 把注释解以上是关于SpringMvc自动任务调度之task实现的主要内容,如果未能解决你的问题,请参考以下文章
基于Spring+SpringMVC+MyBatis开发书评网利用Spring-Task自动计算图书评分以及评论人数