Could not instantiate listener org.springframework.web.context.ContextLoaderListener

创建了一个Maven工程,前几天打开index.jsp还可以出现页面,现在打开就报错了。网上说tomcat启动了你再启动,端口就会被占用,然后报错,检查进程,并没有8080端口的进程,然后打开tomcat安装目录,找到shutdown.bat将其手动关闭,再启动工程,还是报同样的错误,排除;还有说web.xml中的监听器配置出错了,那我之前就能正常运行的,凭什么会错呢,但是还是检查了一遍,没找出错误,内容如下:

Could not instantiate listener org.springframework.web.context.ContextLoaderListener_第1张图片

百思不得其解,最后发现是自己run on Server 的时候选的是标红的选项Could not instantiate listener org.springframework.web.context.ContextLoaderListener_第2张图片

而且不知道为什么没有了Tomcat选项,自己也没有注意看,得选择Tomcat服务器才行啊,所以加上Tomcat选项就可以运行成功了!

 

报错部分内容:

Starting preview server on port 8080

Modules:
  SmartHome (/SmartHome)

2019-03-02 13:40:06.968:INFO:oejs.Server:jetty-8.1.14.v20131031
2019-03-02 13:40:07.901:WARN:oejw.StandardDescriptorProcessor:Could not instantiate listener org.springframework.web.context.ContextLoaderListener
java.lang.ClassNotFoundException: org.springframework.web.context.ContextLoaderListener
    at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:335)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
    at org.eclipse.jetty.webapp.WebAppClassLoader.loadClass(WebAppClassLoader.java:424)
    at org.eclipse.jetty.webapp.WebAppClassLoader.loadClass(WebAppClassLoader.java:377)
    at org.eclipse.jetty.server.handler.ContextHandler.loadClass(ContextHandler.java:1528)
    at org.eclipse.jetty.webapp.StandardDescriptorProcessor.visitListener(StandardDescriptorProcessor.java:1839)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:498)
    at org.eclipse.jetty.webapp.IterativeDescriptorProcessor.visit(IterativeDescriptorProcessor.java:80)
    at org.eclipse.jetty.webapp.IterativeDescriptorProcessor.process(IterativeDescriptorProcessor.java:67)
    at org.eclipse.jetty.webapp.MetaData.resolve(MetaData.java:332)
    at org.eclipse.jetty.webapp.WebAppContext.startContext(WebAppContext.java:1219)
    at org.eclipse.jetty.server.handler.ContextHandler.doStart(ContextHandler.java:717)
    at org.eclipse.jetty.webapp.WebAppContext.doStart(WebAppContext.java:454)
    at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:64)
    at org.eclipse.jetty.server.handler.HandlerCollection.doStart(HandlerCollection.java:229)
    at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:64)
    at org.eclipse.jetty.server.handler.HandlerWrapper.doStart(HandlerWrapper.java:95)
    at org.eclipse.jetty.server.Server.doStart(Server.java:282)
    at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:64)
    at org.eclipse.wst.server.preview.internal.PreviewStarter.run(PreviewStarter.java:72)
    at org.eclipse.wst.server.preview.internal.PreviewStarter.main(PreviewStarter.java:29)
 

你可能感兴趣的:(Could not instantiate listener org.springframework.web.context.ContextLoaderListener)