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.MethodMappingInterceptorServiceは、メソッドの呼び出しに対して任意のメソッド毎に異なるインターセプタを呼び出すInterceptor実装サービスです。
このサービスは、複合的なサービスで、以下のサービスを下位サービスとして使用します。
下位サービスインタフェース | 用途 |
jp.ossc.nimbus.service.aop.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="MethodMappingInterceptor"
- code="jp.ossc.nimbus.service.aop.interceptor.MethodMappingInterceptorService">
- <!-- 呼び出されるメソッドとインターセプタのマッピングを定義する -->
- <attribute name="TargetMethodMapping">
- sample.Sample#hoge(int)=#NullReturnInterceptor
- sample.Sample#fuga(int, java.lang.String)=#UnsupportedOperationExceptionTrowInterceptor
- </attribute>
- <depends>NullReturnInterceptor</depends>
- <depends>UnsupportedOperationExceptionTrowInterceptor</depends>
- </service>
- <service name="NullReturnInterceptor"
- code="jp.ossc.nimbus.service.aop.interceptor.NullReturnInterceptorService"/>
- <service name="UnsupportedOperationExceptionTrowInterceptor"
- code="jp.ossc.nimbus.service.aop.interceptor.ExceptionThrowInterceptorService">
- <attribute name="ExceptionClassName">java.lang.UnsupportedOperationException</attribute>
- <attribute name="Message">このメソッドは呼び出してはいけません。</attribute>
- </service>
- </manager>
- </server>