This is a continuation of my attempt to get a simple Spring MVC up and running. See other thread for that history, if you wish:
http://forum.springframework.org/showthread.php?t=28199
Note that I have the rapidjava "timex" sample running from the book "Agile Java Development with Spring, Hibernate and Eclipse", so I think understand the basics of how this is supposed to hang together.
This time, instead of using spring.jar (2.0-rc3) plus the dependent libs from the rapidjava (remember, this was working kinda, with its spring.jar 2.0-m2), I used ALL the dependent jars included with 2.0-rc3. So, theoretically, I'm using the latest/greatest spring 2.0 with ALL its downloaded (and supposedly tested) dependencies. With that all in place in my classpath, tomcat shows this "error" in the log. I say "error" because, as you can see below, Spring doesn't think there's an error. It's just spitting out INFO messages, including the "Failure to find 3 required extension(s)". Tomcat (I assume) is spitting out the "SEVERE: Error getConfigured":
I've googled around on this, but can't find anything signif.Code:INFO: Deploying web application archive TestSpringMVC.war Aug 18, 2006 10:21:13 AM org.apache.catalina.util.ExtensionValidator validateManifestResources INFO: ExtensionValidator[/TestSpringMVC][commons-attributes-api.jar]: Required extension "ant" not found. Aug 18, 2006 10:21:13 AM org.apache.catalina.util.ExtensionValidator validateManifestResources INFO: ExtensionValidator[/TestSpringMVC][commons-attributes-compiler.jar]: Required extension "ant" not found. Aug 18, 2006 10:21:13 AM org.apache.catalina.util.ExtensionValidator validateManifestResources INFO: ExtensionValidator[/TestSpringMVC][commons-attributes-compiler.jar]: Required extension "javadoc" not found. Aug 18, 2006 10:21:13 AM org.apache.catalina.util.ExtensionValidator validateManifestResources INFO: ExtensionValidator[/TestSpringMVC]: Failure to find 3 required extension(s). Aug 18, 2006 10:21:13 AM org.apache.catalina.core.StandardContext start SEVERE: Error getConfigured Aug 18, 2006 10:21:13 AM org.apache.catalina.core.StandardContext start SEVERE: Context [/TestSpringMVC] startup failed due to previous errors Aug 18, 2006 10:21:13 AM org.apache.catalina.core.StandardContext stop INFO: Container org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/TestSpringMVC] has not been started
Anyone know why this is erroring?
Again, same as my other forum thread, if I revert back to the rapidjava/lib jars (from the book code), tomcat deploys the app without error, and it mostly runs, so this is probably about lib setup, not my app per se... or maybe some subtle inter-relationship between my app and the lib setup.
Ben


Reply With Quote
)
