Tomcat服务器启动错误,目测是filter的问题,但是不知道错哪了

<?xml version="1.0" encoding="UTF-8"?>

<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">

  <display-name>FirstStruts2</display-name>

  <filter>

       <filter-name>struts2</filter-name>

       <filter-class>org.apache.struts2.dispatcher.filter.StrutsPrepareAndExecuteFilter</filter-class>

  </filter>

  <filter-mapping>

        <filter-name>struts2</filter-name>

        <url-pattern>/*</url-pattern>

  </filter-mapping>

  <welcome-file-list>

    <welcome-file>index.jsp</welcome-file>

  </welcome-file-list>

</web-app>

http://img.mukewang.com/57d62b960001681c12770476.jpg

段子洛
浏览 1841回答 2
2回答

yanrun

应该是你缺少了log4j的jar包,加上应该就可以了

段子洛

我是真的瞎。缺了几个包。还以为是过滤器的原因。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java
WebApp