当我尝试将名为shopping-1的应用程序部署到Glassfish 3时,出现以下错误:
'Publishing to GlassFish Server Open Source Edition 3 (Java EE 6)2 at localhost...'has encountered a problen.
cannot Deploy shopping-1
Deployment Error for module: shopping-1: Exception while loading the app :
java.lang.Exception: java.lang.IllegalStateException: ContainerBase.addChild: start:
org.apache.catalina.LifecycleException:
org.apache.catalina.LifecycleException:
java.lang.ClassNotFoundException:
org.springframework.web.servlet.DispatcherServlet
如何追踪并解决此问题?
答案 0 :(得分:0)
显然shopping-1.war
文件不包含包含DispatcherServlet
类的存档。
unzip -l shopping-1.war | grep spring
(在Linux上)将为您提供所有与弹簧相关的包含jar文件的列表
答案 1 :(得分:0)