spring quartz 타이머 의 간단 한 설정 과 사용
commons-lang.jar commons-logging.jar quartz.jar
두 번 째 단계:비 즈 니스 빈->cn.yulon.service.MessageService 새로 만 들 기
package cn.yulon.service;
public class MessageService {
int i;
public void printLog(){
i++;
System.out.println("this is my timer:" +i);
}
}
세 번 째 단계:Spring 프로필 time-bean.xml,다음 과 같 습 니 다.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd">
<beans>
<!-- : -->
<bean id="msgService" class="cn.yulon.service.MessageService" />
<!-- : -->
<bean id="workDetail" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">
<!-- bean -->
<property name="targetObject" ref="msgService"/>
<!-- bean -->
<property name="targetMethod" value="printLog"/>
<!-- -->
<property name="concurrent" value="false"/>
</bean>
<!-- : : 1 -->
<bean id="msgTrigger" class="org.springframework.scheduling.quartz.CronTriggerBean">
<property name="jobDetail" ref="workDetail"/>
<property name="cronExpression" value="0/1 * * * * ?"/>
</bean>
<!-- (Scheduler) , ref bean -->
<bean class="org.springframework.scheduling.quartz.SchedulerFactoryBean">
<property name="triggers">
<list>
<ref bean="msgTrigger"/>
</list>
</property>
</bean>
</beans>
xml 에서 주목 할 점 을 설정 하 는 것 은
0 0 10,14,16 * * ? 10 , 2 4
0 0,15,30,45 * 1-10 * ? 10 15
30 0 0 1 1 ? 2012 2012 1 1 30
0 0 8-5 ? * MON-FRI
-
*
?
STEP 4:새로운 테스트 클래스 SpringTest
public class SpringTest {
public static void main(String[] args) {
ApplicationContext act = new ClassPathXmlApplicationContext("time-bean.xml");
}
실행 결 과 는 다음 과 같 습 니 다.
this is my timer:1
this is my timer:2
this is my timer:3
this is my timer:4
this is my timer:5
응용 장소:예 를 들 어 정시 알림,로그 정시 백업 등 응용 프로그램 을 합 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
thymeleaf로 HTML 페이지를 동적으로 만듭니다 (spring + gradle)지난번에는 에서 화면에 HTML을 표시했습니다. 이번에는 화면을 동적으로 움직여보고 싶기 때문에 입력한 문자를 화면에 표시시키고 싶습니다. 초보자의 비망록이므로 이상한 점 등 있으면 지적 받을 수 있으면 기쁩니다! ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.