0

JDeveloper11gでimageDBとjpetstoreを実行しようとしています。正常にコンパイルされますが、実行されず、weblogicサーバーはエラーをスローします。Jdeveloper11gでSpring2.5.xサンプルアプリケーションを正常に実行する方法を知っている人はいますか。

jpetstoreサンプルを試してみると、次のエラーが発生します。

Jul 27, 2009 5:03:20 PM org.springframework.web.context.ContextLoader initWebApplicationContext
SEVERE: Context initialization failed
org.springframework.beans.factory.BeanDefinitionStoreException: Unexpected exception parsing
XML document from ServletContext resource [/WEB-INF/applicationContext.xml]; nested exception is java.lang.NoClassDefFoundError: Could not initialize class
org.springframework.aop.aspectj.AspectJExpressionPointcut
4

1 に答える 1

0

この問題は、WebLogic Server アプリケーション クラスローディングが原因で発生します。

次の weblogic.xml が必要です。

<?xml version="1.0" encoding="UTF-8"?>
<weblogic-web-app xmlns="http://www.bea.com/ns/weblogic/weblogic-web-app">
   <container-descriptor>
      <prefer-web-inf-classes>true</prefer-web-inf-classes>
   </container-descriptor>
</weblogic-web-app>

詳細情報: http://download.oracle.com/docs/cd/E13222_01/wls/docs92/programming/classloading.html

于 2009-07-28T15:14:57.890 に答える