添加侦听器类时出错

时间:2015-11-07 10:37:31

标签: java xml spring-mvc web

为什么我在web.xml文件中添加

 <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>

我看到错误

2015-11-07 12:27:33,086] Artifact Choouse:war exploded: Error during artifact deployment. See server log for details.
07-Nov-2015 12:27:38.208 INFO [localhost-startStop-1] org.apache.catalina.startup.HostConfig.deployDirectory Deploying web application directory D:\english\apache-tomcat-8.0.23-windows-x86\apache-tomcat-8.0.23\webapps\manager
07-Nov-2015 12:27:38.293 INFO [localhost-startStop-1] org.apache.catalina.startup.HostConfig.deployDirectory Deployment of web application directory D:\english\apache-tomcat-8.0.23-windows-x86\apache-tomcat-8.0.23\webapps\manager has finished in 84 ms

1 个答案:

答案 0 :(得分:0)

您的问题的答案是(可能)您的“web.xml”文件中存在语法错误。在日志消息中的某处,它可能会告诉您语法错误所在的文件以及行号和字符编号。仔细检查文件,并将其与XML文件的DTD / schema / documentation进行比较。

提示:在我看到的所有示例中,<listener>元素包含<listener-class>元素。