com.poscoict.glueframework.batch.operator
Class GlueJobOperator

java.lang.Object
  extended by com.poscoict.glueframework.batch.operator.GlueJobOperator
All Implemented Interfaces:
org.springframework.beans.factory.InitializingBean

public class GlueJobOperator
extends Object
implements org.springframework.beans.factory.InitializingBean

Job Restarter(JobOperator).

 Bean Property
 
 - dataSource : (Çʼö) DataSource ÂüÁ¶ bean id
 
 - jobOperator : (Çʼö) JobOperator ÂüÁ¶ bean id
 
 - restartSql : (Çʼö) 
               default : INSERT INTO BATCH_JOB_OPERATOR_INFO (JOB_EXECUTION_ID, REF_JOB_EXECUTION_ID, MESSAGE) VALUES (?,?,?)
 
 
 ¿¹Á¦
 »ç¿ë ¿¹# 1
 
     <bean id="JobRestarter" class="com.poscoict.glueframework.batch.operator.GlueJobOperator">
         <property name="dataSource" ref="dataSource"/>
         <property name="jobOperator" ref="jobOperator"/>
     </bean>
 
 
 
 Âü°í : schema-oracle-batch-plut.sql ( glue-batch.jar!/db_script )
 
 
 Âü°í : applicationContext.xml
 
     <bean id="serviceManager" class="com.poscoict.glueframework.biz.control.GlueServiceManagerImpl">
         <property name="serviceLoader" ref="serviceLoader" />
         <property name="cacheManager" ref="cacheManager" />
     </bean>
     <bean id="cacheManager" .../>
     <bean id="serviceLoader" .../>
     <bean id="dataSource" .../>
     <bean id="JobRestarter" .../>
     <bean id="jobOperator" class="org.springframework.batch.core.launch.support.SimpleJobOperator">
         <property name="jobLauncher" ref="jobLauncher"/>
         <property name="jobExplorer" ref="jobExplorer"/>
         <property name="jobRepository" ref="jobRepository"/>
         <property name="jobRegistry" ref="jobRegistry"/>
     </bean>
     <bean id="jobLauncher" .../>
     <bean id="jobExplorer" .../>
     <bean id="jobRepository" .../>
     <bean id="jobRegistry" .../>
 <batch:job id="job" .../>


Constructor Summary
GlueJobOperator()
           
 
Method Summary
 void afterPropertiesSet()
           
 Long restart(long executionId, String message)
          JobOperator ¸¦ ÅëÇØ ½ÇÆÐÇϰųª Á¤ÁöµÈ JobExceutionÀ» Àç½ÃÀÛÇÏ°í 'BATCH_JOB_OPERATOR_INFO' ¿¡ ±â·ÏÇÑ´Ù.
 void setDataSource(DataSource dataSource)
          setter method for DI.
 void setJobOperator(org.springframework.batch.core.launch.JobOperator jobOperator)
          setter method for DI.
 void setRestartSql(String restartSql)
          setter method for DI.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

GlueJobOperator

public GlueJobOperator()
Method Detail

setRestartSql

public void setRestartSql(String restartSql)
setter method for DI.

Parameters:
restartSql -

setJobOperator

public void setJobOperator(org.springframework.batch.core.launch.JobOperator jobOperator)
setter method for DI.

Parameters:
jobOperator -

setDataSource

public void setDataSource(DataSource dataSource)
setter method for DI.

Parameters:
dataSource -

restart

public Long restart(long executionId,
                    String message)
             throws Exception
JobOperator ¸¦ ÅëÇØ ½ÇÆÐÇϰųª Á¤ÁöµÈ JobExceutionÀ» Àç½ÃÀÛÇÏ°í 'BATCH_JOB_OPERATOR_INFO' ¿¡ ±â·ÏÇÑ´Ù.

Parameters:
executionId - - Àç½ÃÀÛÇÏ°íÀÚ ÇÏ´Â JoB Execution ID
message -
Returns:
Throws:
Exception

afterPropertiesSet

public void afterPropertiesSet()
                        throws Exception
Specified by:
afterPropertiesSet in interface org.springframework.beans.factory.InitializingBean
Throws:
Exception


Copyright © 2013–2015 POSCO ICT SWÁ¦Ç°±â¼úÆÀ. All rights reserved.