I expect there's a simple solution to my problem, but being quite a bit of a newbie with spring tools I'm not sure where to start looking.
We have an app that's been developed using Spring's Eclipse, including build, deploy and test. We would like to start doing automated builds via maven instead... however the app compiles outside of eclipse, the result doesn't run properly. My question therefore is, what might eclipse be doing implicitly that we need to add configuration for?
Below is the top of the stack in my browser, if it helps:
javax.servlet.ServletException: Servlet.init() for servlet SpringMVCDispatcherServlet threw exception
org.apache.catalina.authenticator.AuthenticatorBas e.invoke(AuthenticatorBase.java:472)
org.apache.catalina.valves.ErrorReportValve.invoke (ErrorReportValve.java:98)
org.apache.catalina.valves.AccessLogValve.invoke(A ccessLogValve.java:927)
org.apache.catalina.ha.session.JvmRouteBinderValve .invoke(JvmRouteBinderValve.java:219)
org.apache.catalina.ha.tcp.ReplicationValve.invoke (ReplicationValve.java:333)
org.apache.catalina.connector.CoyoteAdapter.servic e(CoyoteAdapter.java:407)
org.apache.coyote.http11.AbstractHttp11Processor.p rocess(AbstractHttp11Processor.java:999)
org.apache.coyote.AbstractProtocol$AbstractConnect ionHandler.process(AbstractProtocol.java:565)
org.apache.tomcat.util.net.JIoEndpoint$SocketProce ssor.run(JIoEndpoint.java:307)
java.util.concurrent.ThreadPoolExecutor$Worker.run Task(ThreadPoolExecutor.java:886)
java.util.concurrent.ThreadPoolExecutor$Worker.run (ThreadPoolExecutor.java:908)
java.lang.Thread.run(Thread.java:662)


Reply With Quote
