Interceptor実装サービス jp.ossc.nimbus.service.aop.interceptor.ExceptionWrapInterceptorService

jp.ossc.nimbus.service.aop.interceptor.ExceptionWrapInterceptorServiceは、例外をラップするInterceptor実装サービスです。

以下に簡単なサービス定義を示します。

  1. <?xml version="1.0" encoding="Shift_JIS"?>
  2. <!DOCTYPE server PUBLIC
  3. "-//Nimbus//DTD Nimbus 1.0//JA"
  4. "http://nimbus.sourceforge.jp/dtd/nimbus-service_1_0.dtd">
  5. <server>
  6. <manager>
  7. <!-- 例外をラップするInterceptorサービス -->
  8. <service name="ExceptionWrapInterceptor"
  9. code="jp.ossc.nimbus.service.aop.interceptor.ExceptionWrapInterceptorService">
  10. <!-- ラップする対象の例外クラス名とラップする例外クラス名のマッピングを設定する -->
  11. <attribute name="WrapExceptionMapping">
  12. java.lang.NullPointerException=sample.UnexpectedException
  13. </attribute>
  14. <!-- ラップする例外のメッセージを設定する -->
  15. <attribute name="Message">予期しない例外です。</attribute>
  16. </service>
  17. </manager>
  18. </server>


アスペクト指向/Interceptor