问答详情
源自:2-2 Struts2 案例代码实现

Struts一直提醒有个类没找到

为什么一直提醒 org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter这个类没找到啊?

明明能够通过CTRL+左键查看API的

提问者:丶归途 2017-08-19 11:07

个回答

  • qq_只是冬天饮雪水_0
    2017-08-23 19:59:08

    看看对应的jar包里,路径到底是什么。
    有时候官方更新,相应的路径可能有所改变。

  • 丶归途
    2017-08-20 10:20:24

    <?xml version="1.0" encoding="UTF-8"?>
    <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
      <display-name>ForStruts</display-name>
      <filter>
      <filter-name>struts2</filter-name>
      <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
      </filter>
      <filter-mapping>
      <filter-name>struts2</filter-name>
      <url-pattern>/*</url-pattern>
      </filter-mapping>
     
      <welcome-file-list>
        <welcome-file>index.html</welcome-file>

      </welcome-file-list>
    </web-app>

    http://img.mukewang.com/5998f1e400017fb806580398.jpg

  • 星小梦
    2017-08-20 07:01:59

    你web.xml配置strutsprepareandexecutefilter拉吗?

  • 丶归途
    2017-08-19 11:21:00

    http://img.mukewang.com/5997ae520001ae7606120213.jpg

    http://img.mukewang.com/5997ae530001726409430152.jpg

    http://img.mukewang.com/5997ae8c00018ed306540406.jpg

    如图所示,很不理解。