论坛首页 入门技术论坛

问个貌似很简单的问题,关于在Spring下运行关于Quartz的单元测试

浏览 3559 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
作者 正文
   发表时间:2007-02-01  
通过在Spring配置文件中配置了以下各个bean以后,如何在Junit的testcase中使quartz运行起来?
在setup()方法中,已建立了applicationContext。我试图通过显式调用SchedulerFactoryBean.start()
方法来运行quartz,没有成功。
<beans>
	<description>This  is a start! </description>
	<bean id="testSpring" class="com.test.app.TestSpring">

	</bean>
	
	<bean id="exampleJob" class="org.springframework.scheduling.quartz.JobDetailBean">
		<property name="jobClass" value="com.test.app.ExampleJob"/>
		<property name="jobDataAsMap">
			<map>
				<entry key="nameofjob" value="leexin's TEST!"/>
			</map>
		</property>
	</bean>
	
	<bean id="simpleTrigger" class="org.springframework.scheduling.quartz.SimpleTriggerBean">
		<property name="jobDetail" ref="exampleJob"/>
		<property name="startDelay" value="10000"/>
		<property name="repeatInterval" value="500000"/>
	</bean>
	
	<bean id="quartzScheduler" class="org.springframework.scheduling.quartz.SchedulerFactoryBean">
		<property name="triggers">
			<list>
				<ref bean="simpleTrigger"/>
			</list>
		</property>
	</bean>

</beans>

   发表时间:2007-02-01  
自己回复一下吧,写一个main方法并在其中调用context.getBean("quartzScheduler").
将SchedulerFactoryBean实例化以后quartz跑起来了。
但在TestCase中怎么运行还是不清楚。。。
0 请登录后投票
论坛首页 入门技术版

跳转论坛:
Global site tag (gtag.js) - Google Analytics