本文主要是介绍使用spring4添加调度任务task的namespace,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
<?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:task="http://www.springframework.org/schema/task"xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsdhttp://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task.xsd"></beans>
代码中task部分是要添加的命名空间。
如何找到?
在spring-context包中
打开spring-task.xsd
还有一种方式是:在idea14中,xml写上
<task:executor id="executor" pool-size="5" />键盘alt+enter,会自动添加命名空间。
另外,spring官方提供的xml基础schema配置:http://docs.spring.io/spring/docs/current/spring-framework-reference/html/xsd-configuration.html#xsd-config-body-schemas-jdbc
这篇关于使用spring4添加调度任务task的namespace的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!