首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

spring配备quartz 多任务

2012-09-07 
spring配置quartz 多任务这是我的一个测试,我配的2个任务。spring 的配置:!-- 与quartz有关的设置 --bea

spring配置quartz 多任务
这是我的一个测试,我配的2个任务。
spring 的配置:

<!-- 与quartz有关的设置 --><bean id="billJob" lazy-init="false" name="code">public class MainTest extends TestCase {public void testJob(){System.out.println("start");ApplicationContext context = new FileSystemXmlApplicationContext("./config/spring.xml");System.out.println("end");}}


发现程序打印end后就结束了。
然后我用Main测试,可以正常执行。

Java代码
public class Main {/** * @param args */public static void main(String[] args) {// TODO Auto-generated method stubSystem.out.println("start");ApplicationContext context = new FileSystemXmlApplicationContext("./config/spring.xml");System.out.println("end");}}

job类的内容为:

Java代码
public class ExceptionJob {public void run(){System.out.println("ExceptionJob running");}}

热点排行