[적용 예] Scheduling

개요

Scheduling Service 를 적용해서 메일을 보내지 않은 답변을 체크한다.

설명

Configuration

resources\spring\context-scheduling.xml

<bean id="jobDetail"
	class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">
	<property name="targetObject" ref="egovCvplCnsltSchedulingService" />
	<property name="targetMethod" value="sendAnswerEmail" />
	<property name="concurrent" value="false" />
</bean>
 
<bean id="simpleTrigger"
	class="org.springframework.scheduling.quartz.SimpleTriggerBean">
	<property name="jobDetail" ref="jobDetail" />
	<property name="startDelay" value="100000" />
	<property name="repeatInterval" value="100000" />
</bean>
 
<bean id="scheduler" class="org.springframework.scheduling.quartz.SchedulerFactoryBean">
	<property name="triggers">
		<list>
			<ref bean="simpleTrigger" />
		</list>
	</property>
</bean>

Source

egovframework\rte\cvpl\util\EgovCvplCnsltSchedulingService.java

/** EgovCvplCnsltMailService */
@Resource(name = "egovCvplCnsltMailService")
private EgovCvplCnsltMailService egovCvplCnsltMailService;
 
/**
 * email을 보낼 대상을 선정한다.
 * @param 
 * @return EgovCvplCnsltMailService
 * @exception Exception
 */                 
public void sendAnswerEmail() throws Exception {
	CvplEmailVO cvplEmailVO = new CvplEmailVO();
	String sResult = "";
	List<CvplEmailVO> cvplEmailVOList = cvplCnsltService.selectCvplEmail();
 
    for (int i = 0; i < cvplEmailVOList.size(); i++) {
    	cvplEmailVO = (CvplEmailVO)cvplEmailVOList.get(i);
 
    	egovCvplCnsltMailService.setEmailName(cvplEmailVO.getEmailName());
    	egovCvplCnsltMailService.setEmailAddr(cvplEmailVO.getEmailAddr());
    	egovCvplCnsltMailService.setEmailSj(cvplEmailVO.getEmailSj());
    	egovCvplCnsltMailService.setEmailContents(cvplEmailVO.getEmailContents());
 
    	sResult = egovCvplCnsltMailService.sendEmail();
 
    	// 메일송신이 성공했을 경우에만 메일송신 완료 셋팅을 해준다.
    	if(sResult.equals("SUCCESS")) {
    		cvplCnsltService.updateCvplEmailSend(cvplEmailVO);
    	}
 
    }
 
}
 
egovframework/rte/sample/cvpl/scheduling.txt · 마지막 수정: 2023/12/21 05:21 (외부 편집기)
 
이 위키의 내용은 다음의 라이센스에 따릅니다 :CC Attribution-Noncommercial-Share Alike 3.0 Unported
전자정부 표준프레임워크 라이센스(바로가기)

전자정부 표준프레임워크 활용의 안정성 보장을 위해 위험성을 지속적으로 모니터링하고 있으나, 오픈소스의 특성상 문제가 발생할 수 있습니다.
전자정부 표준프레임워크는 Apache 2.0 라이선스를 따르고 있는 오픈소스 프로그램입니다. Apache 2.0 라이선스에 따라 표준프레임워크를 활용하여 발생된 업무중단, 컴퓨터 고장 또는 오동작으로 인한 손해 등에 대해서 책임이 없습니다.
Recent changes RSS feed CC Attribution-Noncommercial-Share Alike 3.0 Unported Donate Powered by PHP Valid XHTML 1.0 Valid CSS Driven by DokuWiki