Hello,
I wrote 2 applications using spring.. and I compiled them to .war's. these files i placed on my app-server (JBoss 3.2.6) an they run fine. I now wrote a new application and putted al files in a directory with the extension .war ( because the application is not finished yet)
This application works fine. But when I delete the 2 previous applications (which I don't need anymore) it doesn't work anymore. It looks like it is using something from the other applications, however they have nothing to do with eachother.
I always get teh following error:
15:43:14,261 ERROR [Engine] StandardWrapperValve[chassisservlet]: Servlet.servic
e() for servlet chassisservlet threw exception
java.lang.NoClassDefFoundError: org/springframework/context/support/ClassPathXml
ApplicationContext at be.bmw.servlets.ChassisServlet.doPost(ChassisServl et.java:49)
at javax.servlet.http.HttpServlet.service(HttpServlet .java:717)
at javax.servlet.http.HttpServlet.service(HttpServlet .java:810)
at org.apache.catalina.core.ApplicationFilterChain.in ternalDoFilter(Appl
icationFilterChain.java:237)
at org.apache.catalina.core.ApplicationFilterChain.do Filter(ApplicationF
ilterChain.java:157)
at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doF ilter(ReplyHeaderFi
lter.java:75)
...
I tried to install a different application server, but get the same error. when I run it as a local application from within eclips, it works fine too.
does anyone know what this error mean? I really want to delete the other applications.


Reply With Quote