目前利用Maven工具来构建自己的项目已比较常见。今天主要不是介绍Maven工具,而是当你本地启动这样的服务时,如果遇到报错,该如何解决?下面只是参考的解决方案,具体的解法还是得看自己本地的工程配置。
1.log提示:
SEVERE: Error configuring application listener of class org.springframework.web.context.ContextLoaderListener
java.lang.ClassNotFoundException: org.springframework.web.context.ContextLoaderListener....
SEVERE: Error configuring application listener of class org.springframework.web.util.IntrospectorCleanupListener
java.lang.ClassNotFoundException: org.springframework.web.util.IntrospectorCleanupListener
可能的解决方案:先检查Web Deployment Assembly中的配置,是否定义Java Build Path Entries,如下图项目右键‘properties‘-‘ Deployment Assembly ‘,是否引入了Maven Dependencies目录。
然后"project"-"clean"下,maven更新下("maven"-"updata project"),最后重新发布一下,右键单击指定的server-"clean",然后重新启动。
时间: 2024-10-12 12:51:47