报错信息:One or more listeners failed to start. Full details will be found in the appropriate container log file.
具体就是web.xml此配置报错:
服务器启动错误Tomcat:One or more listeners failed to start.报错解决方案
IDEA:在使用IDEA运行SSM项目的时候 , Tomcat运行失败 , 出现好几次 , 具体报错"One or more listeners failed to start. Full details will be found in the appropriate container log file"
具体有一下几种解决方案:
法1.查看编译后web目录下lib有没有jar , 没有就put一下 , 重编译添加 , 然后重新启动Tomcat .
法2.右键点击项目 , 点击Build Module重写编译 , 然后重新启动Tomcat.
法3.点击Maven中clean清除下编译文件 , 然后重新启动Tomcat.
法4.进入项目结构 Artifact, 删除本Tomcat的war, 重写生成一下 , 然后重新启动Tomcat.
法5.重启项目 , 退出IDEA重新打开.
ps:基本就这几种解决方案了 , 最近写项目出现了好几次这种情况 , 有包找不到0.0 , 总结了下.