first, i am a new programmer to spring and expresso.
then i got a job to develop a management task, using the expresso framework, and make it just spring + hibernate.
now i was told to add this part in the expresso' WEB-INF ' web.xml
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/applicationContext.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoade rListener</listener-class>
</listener>
it worked before, but then someone ask me to develop the project using hibernate3. after i replace all the .jar files, and edited the applicationContext.xml, finally ran the tomcat, and the error is,
[@APPNAME@] ERROR [main] ContextLoader.initWebApplicationContext(182) | Context initialization failed
java.lang.NoSuchMethodError: org.springframework.util.ClassUtils.forName(Ljava/lang/String;Ljava/lang/ClassLoaderLjava/lang/Class;
......
what's my problem. my manager said it's the lib. 's problem, hoping someone could give me a hand.


Ljava/lang/Class;
Reply With Quote