zoukankan      html  css  js  c++  java
  • startup failed due to previous errors

    IDEA搭建SSM项目服务器报:startup failed due to previous errors

    第一次遇到这种问题,Tomcat打印出的信息极少,网上搜索了下,在WEB-INF目录下添加classes目录,在classes目录创建logging.properties,如下

    logging.properties内容:

    handlers = org.apache.juli.FileHandler, java.util.logging.ConsoleHandler  
    
    ############################################################
    # Handler specific properties.
    # Describes specific configuration info for Handlers.
    ############################################################
    
    org.apache.juli.FileHandler.level = FINE  
    org.apache.juli.FileHandler.directory = ${catalina.base}/logs  
    org.apache.juli.FileHandler.prefix = error-debug.  
    
    java.util.logging.ConsoleHandler.level = FINE  
    java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter 

    得到了报错信息:java.lang.ClassNotFoundException: org.springframework.web.context.ContextLoaderListener

    执行后,在WEB-INF在增加了lib目录,里面是项目引用的jar包,点击OK。

    实际在Idea中这样配置:

    File > Project Structure > Artifacts > 在右侧Output Layout右击项目名,选择Put into Output Root,见下面截图:

    重启Tomcat,java.lang.ClassNotFoundException: org.springframework.web.context.ContextLoaderListener这个错误不报了。

    但是,又报了一个错误:

    Exception sending context initialized event to listener instance of class org.springframework.web.context.ContextLoaderListener
    org.springframework.beans.factory.BeanDefinitionStoreException: Unexpected exception parsing XML document from file[D:code
    ewstartoutartifacts
    ewstart_war_explodedWEB-INFclassesspringapplicationContext-mybatis.xml]; nested exception is java.lang.NoClassDefFoundError: org/springframework/context/event/EventListenerFactory

    Caused by: java.lang.NoClassDefFoundError: org/springframework/context/event/EventListenerFactory

    查看spring-context-3.2.4.RELEASE.jar  org/springframework/context/event/* 并不存在EventListenerFactory

    spring-context-3.2.4.RELEASE.jar 换成spring-context-4.3.9.RELEASE.jar

    问题解决

  • 相关阅读:
    LayaBox怎么加载不打包的文件
    LayaBox怎么添加背景音乐和音效
    LayaBox的场景切换
    LayaBox怎么在ui页面中取到某个元素对象节点
    LayaBox怎么添加定时循环执行方法播放功能
    LayaBox怎么添加事件
    vue 点击按钮 input框架获取焦点的方法
    JS中的跨域问题
    深入理解javascript之typeof和instanceof
    localStorage(本地存储)使用总结
  • 原文地址:https://www.cnblogs.com/againn/p/7441622.html
Copyright © 2011-2022 走看看