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

jp.ossc.nimbus.service.aop.interceptor.ExceptionConsumeInterceptorServiceは、例外を消費する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="ExceptionConsumeInterceptor"
  9. code="jp.ossc.nimbus.service.aop.interceptor.ExceptionConsumeInterceptorService">
  10. <!-- 消費する例外のクラス名を設定する -->
  11. <attribute name="ExceptionClassNames">java.lang.NullPointerException</attribute>
  12. </service>
  13. </manager>
  14. </server>


アスペクト指向/Interceptor