web-dev-qa-db-ja.com

XML Springスケジューリング構成からアノテーション/コード構成に移行するにはどうすればよいですか?

次のSpringタスクxml構成を純粋にコード/アノテーションベースのバージョンに変換しようとしています。

<task:executor id="xyz.executor"
    pool-size="${xyz.job.executor.pool.size:1-40}"
    queue-capacity="${xyz.job.executor.queue.capacity:0}"
    rejection-policy="CALLER_RUNS"/>

<task:scheduler id="xyz.scheduler" pool size="${xyz.job.scheduler.pool.size:4}"  />

<task:annotation-driven executor="xyz.executor" scheduler="xyz.scheduler" />

<bean id='xyzProcessor' class="xyz.queueing.QueueProcessor" /> 

<task:scheduled-tasks scheduler="xyz.scheduler" >
    <task:scheduled ref="partitioner" method="createPartitions" cron="${xyz.job.partitioner.interval:0 0 3 * * *}" />
</task:scheduled-tasks>

Springの仕様28.4.1( http://docs.spring.io/spring/docs/current/spring-framework-reference/html/scheduling.html )によると、彼らは行くと言っていますこのようなXMLから:

<task:annotation-driven executor="myExecutor" scheduler="myScheduler"/>
<task:executor id="myExecutor" pool-size="5"/>
<task:scheduler id="myScheduler" pool-size="10"/>

コード構成は、@ EnableSchedulingまたは@EnableAsync、あるいはその両方を有効にするのと同じくらい簡単です。

ただし、実際にスケジューラをインスタンス化できる場所はどこにもありません。 @EnableSchedulingのjavadoc( http://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/scheduling/annotation/EnableScheduling.html )は、取得方法を示しています。自分で作成したExecutorをプラグインしますが、どのクラスにするべきか正確にはわかりません(プールサイズ、キュー容量、および拒否ポリシーを制御できるようにしたい)。また、configureTasksオーバーライドを使用してcreatePartitionsメソッドをスケジュールする方法も示しています。ただし、スケジューラーに名前を付けて(スレッドを識別できるように)、プールサイズを制御できるようにしたいと思います。

だから、私はこれらのことを知りたいです:

1)XMLにあるエグゼキュータフィールドを設定するためにどのクラスを使用できますか?

2)名前とプールサイズを制御できるスケジューラインスタンスを作成する方法はありますか?

10
AHungerArtist

タイプ AsyncConfigurerAsyncConfigurerSupport 、および SchedulingConfigurer を確認してください。これらは、非同期/スケジューリング構成で@Configurationクラスを拡張するために使用できるヘルパータイプです。

それらすべて、および @EnabledAsync のjavadocには、非同期/スケジューリング@Configurationクラスをセットアップするために必要なすべてのセットアップメソッドがあります。

与えられた例は等しい

 @Configuration
 @EnableAsync
 public class AppConfig implements AsyncConfigurer {

     @Bean
     public MyAsyncBean asyncBean() {
         return new MyAsyncBean();
     }

     @Override
     public Executor getAsyncExecutor() {
         ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor();
         executor.setCorePoolSize(7);
         executor.setMaxPoolSize(42);
         executor.setQueueCapacity(11);
         executor.setThreadNamePrefix("MyExecutor-");
         executor.initialize();
         return executor;
     }

     @Override
     public AsyncUncaughtExceptionHandler getAsyncUncaughtExceptionHandler() {
         return new MyAsyncUncaughtExceptionHandler();
     }
 }

 <beans>
     <task:annotation-driven executor="myExecutor" exception-handler="exceptionHandler"/>
     <task:executor id="myExecutor" pool-size="7-42" queue-capacity="11"/>
     <bean id="asyncBean" class="com.foo.MyAsyncBean"/>
     <bean id="exceptionHandler" class="com.foo.MyAsyncUncaughtExceptionHandler"/>
 </beans>

SchedulingConfigurertask:schedulerに対して同様の設定をしています。

11

よりきめ細かい制御が必要な場合は、SchedulingConfigurerおよび/またはAsyncConfigurerインターフェースを追加で実装できます。

以下のように、

プールにも注意してください、

@Configuration
@EnableScheduling
public class CronConfig implements SchedulingConfigurer{

    @Override
    public void configureTasks(ScheduledTaskRegistrar taskRegistrar) {
         taskRegistrar.setScheduler(taskExecutor());    
    }


     @Bean(destroyMethod="shutdown")
     public Executor taskExecutor() {
         return Executors.newScheduledThreadPool(10);
     }

}

そして非同期の場合、

@Configuration
@EnableAsync
public class AsyncConfig implements AsyncConfigurer {

    @Override
    public Executor getAsyncExecutor() {
        ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor();
        executor.setCorePoolSize(5);
        executor.setMaxPoolSize(10);
        executor.setQueueCapacity(100);
        executor.initialize();
        return executor;
    }

    @Override
    public AsyncUncaughtExceptionHandler getAsyncUncaughtExceptionHandler() {
        return new SimpleAsyncUncaughtExceptionHandler();
    }
}

ご了承ください @EnableAsyncおよび@EnableSchedulingこれが機能するには、そこにある必要があります。

3
diyoda_