Spring フレームワークと Google App Engine を使用して Web アプリケーションを構築しています。開発サーバーでは機能しますが、Google App Engine サーバーにデプロイするときにこのエラーが発生します
Initialization of bean failed; nested exception is java.lang.NoClassDefFoundError: Could not initialize class net.sf.cglib.proxy.Enhancer
と
Initialization of bean failed; nested exception is java.lang.IncompatibleClassChangeError: class net.sf.cglib.core.DebuggingClassWriter has interface org.objectweb.asm.ClassVisitor as super class
最初のエラーは、cglib.jar の net.sf.cglib.proxy.Enhancer が見つからないように見えることを示していますが、確認すると既に存在していました。2番目のログがわかりません
クラスパスでいくつかのjarファイルを使用します:
asm-4.0
asm-util-4.0
cglib-3.0
app engine sdk 1.7.6
spring framework 3.2.0
問題は何ですか?どうすれば修正できますか?
前もって感謝します