maven项目刚用tomcat运行就出现错误,求解决!

这是错误
图片说明
图片说明
图片说明
这是我的maven项目
图片说明
这是我按照网友说的在pom中增加的配置,但是没有用
图片说明

注释掉web.xml中的listener标签

谢谢,运行没错了,但是我现在访问的时候,又出现了这样一个错误图片说明,会是刚刚注释监听器的问题吗

注释掉web.xml中的listener标签,然后。。。。

你截下web.xml的图呢

或者你还原listener的标签在指定路径下创建applicationContext.xml文件,然后将applicationContext-dao等文件添加进去
<?xml version="1.0" encoding="UTF-8"?>

xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx.xsd">

<import resource="classpath*:spring/applicationContext-dao.xml" />
<import resource="classpath*:spring/applicationContext-trsaction.xml" />
<import resource="classpath*:spring/applicationContext-service.xml" />
<import resource="classpath*:spring/spring-shiro.xml" />