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.ExceptionWrapInterceptorServiceは、例外をラップする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="ExceptionWrapInterceptor"
- code="jp.ossc.nimbus.service.aop.interceptor.ExceptionWrapInterceptorService">
- <!-- ラップする対象の例外クラス名とラップする例外クラス名のマッピングを設定する -->
- <attribute name="WrapExceptionMapping">
- java.lang.NullPointerException=sample.UnexpectedException
- </attribute>
- <!-- ラップする例外のメッセージを設定する -->
- <attribute name="Message">予期しない例外です。</attribute>
- </service>
- </manager>
- </server>