记录一下Spring+Quertz的过程

本文介绍了一个使用Spring框架和Quartz实现的定时任务案例。该案例中定义了一个名为MyJobServiceImple的实体类,继承自QuartzJobBean,并通过XML进行配置。定时任务被设置为每天凌晨1点执行一次,通过注入SmartMenuScheduleService来实现具体的业务逻辑。

实体类 extends QuartzJobBean

/**
 * 
 * @author Frank
 *@date 2014 02-16
 */

public class MyJobServiceImple extends QuartzJobBean {
	private SmartMenuScheduleService smartMenuScheduleService;

	@Override
	protected void executeInternal(JobExecutionContext arg0) throws JobExecutionException {
		/**
		 * 调用同步方法
		 */
		this.getSmartMenuScheduleService().sendMenuSchedule();
	}

	public SmartMenuScheduleService getSmartMenuScheduleService() {
		return smartMenuScheduleService;
	}

	public void setSmartMenuScheduleService(SmartMenuScheduleService smartMenuScheduleService) {
		this.smartMenuScheduleService = smartMenuScheduleService;
	}

}

Xml配置

        <bean id="myJob" class="org.springframework.scheduling.quartz.JobDetailBean">
		<property name="jobClass" value="com.hestia.mosa.menu.service.MyJobServiceImple" />
 		<property name="jobDataAsMap">
			<map>
				<entry key="smartMenuScheduleService">
					<ref bean="smartMenuScheduleService" />
				</entry>
			</map>
		</property>
	</bean>
 
	<!-- 同步触发器 -->
	<bean id="groupCustomerTrigger" class="org.springframework.scheduling.quartz.CronTriggerBean">
		<property name="jobDetail" ref="myJob" />
		<!-- Cron表达式:每天凌晨1点执行一次 -->
		<property name="cronExpression">
			<value>0 0 1 * * ?</value>
		</property>
	</bean>

	<!-- 任务调度器 如果将lazy-init='false'那么容器启动就会执行调度程序 -->
	<bean id="startQuertz" lazy-init="false" autowire="no" class="org.springframework.scheduling.quartz.SchedulerFactoryBean">
		<property name="transactionManager" ref="transactionManager" />
		<property name="triggers">
			<list>
				<ref bean="groupCustomerTrigger" />
			</list>
		</property>
		<property name="quartzProperties">
			<map>
				<entry key="org.quartz.threadPool.threadCount" value="1" />
			</map>
		</property>
	</bean>



为了查找与测绘遥感相关的SCI期刊列表,可以通过学术搜索引擎或访问特定的数据库来获得最新的信息。通常这些资源会定期更新以反映最新收录情况。 些常用的搜索方式包括: 查阅Web of Science (WOS) 数据库 这是最直接的方法之,因为Science Citation Index(SCI)正是由该数据库维护。可以在其中设置关键词为"remote sensing", "surveying and mapping" 或者更具体的主题术语,并选择仅显示被SCI索引的文章和期刊。 利用Google Scholar 虽然不是专门针对SCI期刊,但可以找到很多高影响力的测绘遥感类文章及其发表刊物的信息。从这里也可以了解到哪些是活跃且受认可的研究领域内的出版物。 参考Journal Citation Reports (JCR) 这是个评估科学和技术期刊影响力的重要工具。通过查看影响因子和其他指标,可以帮助确定哪些测绘遥感领域的期刊最具权威性并且属于SCI范畴。 咨询图书馆员或专业人士 大学或研究机构的专业人员能够提供指导和支持,帮助定位最适合需求的具体期刊名称及详情。 订阅行业通讯和服务 某些服务如Elsevier's Scopus也会报告关于各个学科顶级期刊的消息,保持关注可以获得及时的通知。 以下是几个知名的测绘遥感相关SCI期刊的例子: - Remote Sensing of Environment - IEEE Transactions on Geoscience and Remote Sensing - ISPRS Journal of Photogrammetry and Remote Sensing - International Journal of Applied Earth Observation and Geoinformation 请注意,实际的SCI期刊名单可能会随着时间而变化,因此建议总是使用最新的在线资源来进行确认。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值