Spring AOP を使用して GWT-RPC アプリケーションのメソッドをインターセプトしようとしています (GWT-Server ライブラリを使用しているため、RPC サービスは RemoteServiceServlet を拡張しません)。war を tomcat にデプロイしてアプリケーションを起動すると、何らかの理由で CGLIB が失敗します。しかし、そもそもCGLIBがプロキシに使用されている理由がわかりません。私の RPC クラスはインターフェースを実装しているので、JDK 動的プロキシーを使用するべきではありませんか?
この問題をデバッグするために必要なことはありますか? 親切なアドバイス。
注: 参考までに、Spring ではこの例外が発生しますが、それは別の問題だと思います。なぜ CGLIB プロキシが表示されているのか理解できません。
Caused by: net.sf.cglib.core.CodeGenerationException: net.sf.ehcache.CacheException-->Another unnamed CacheManager already exists
in the same VM. Please provide unique names for each CacheManager in the config
or do one of following:
1. Use one of the CacheManager.create() static factory methods to reuse same CacheManager with same name or create one if necessary
2. Shutdown the earlier cacheManager before creating new one with same name.