nimbus (1.2.4) | 2018-01-25 20:02 |
nimbus-sample (1.2.4) | 2018-01-26 17:06 |
jp.ossc.nimbus.service.aop.interceptor.RetryInterceptorServiceは、メソッドの呼び出しの戻り値や発生した例外に応じてリトライを行うInterceptor実装サービスです。
以下に簡単なサービス定義を示します。
- <?xml version="1.0" encoding="Shift_JIS"?>
- <!DOCTYPE server PUBLIC
- "-//Nimbus//DTD Nimbus 1.0//JA"
- "http://nimbus.sourceforge.jp/dtd/nimbus-service_1_0.dtd">
- <server>
- <manager>
- <!-- リトライを制御するInterceptorサービス -->
- <service name="RetryInterceptor"
- code="jp.ossc.nimbus.service.aop.interceptor.RetryInterceptorService">
- <!-- リトライ回数を設定する -->
- <attribute name="MaxRetryCount">2</attribute>
- <!-- リトライ対象となる例外を設定する -->
- <attribute name="ExceptionConditions">java.net.SocketTimeoutException</attribute>
- </service>
- </manager>
- </server>