无法跳转网页

来源:2-2 Struts2 案例代码实现

WOshows

2016-10-26 20:30

org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter配置文件时无法跳转

写回答 关注

8回答

  • 老王叔叔
    2016-10-26 20:58:36
    已采纳

    可能原因:

    1:拼写有误

    2:有部分jar包没有添加

  • 慕移动9181930
    2022-03-27 08:28:42
  • 394316162
    2017-02-15 13:29:17

    There is no Action mapped for namespace [/] and action name [] associated with context path [/HelloWorld].

    报错,求助。

  • WOshows
    2016-11-21 20:39:34

    最近忙,没上慕课。解决了,但是又出了新问题。价格关注吧。到时相互提高

  • 连宏伟HW
    2016-11-15 11:12:27

    你可以贴下一的你的struts.xml配置文件

  • WOshows
    2016-11-01 09:59:38

    喔,解决了。但是 最后还是不能正确的yunxing


  • 我觉得有点菜
    2016-10-30 20:44:26

    web.xml

    org.apache.struts2.dispatcher.filter.StrutsPrepareAndExecuteFilter  没有.ng   正确的CTRL+左键会有链接

    struts.xml

    <package name="default" namespace="/" extends="struts-default" strict-method-invocation="false"> 加上最后面的代码

    将相关jar导入WEB-INFO下的lib里

  • WOshows
    2016-10-26 22:07:21

    不会吧,以下是我敲的代码

    <?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>Demo2</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.jsp</welcome-file>    

      </welcome-file-list>

    </web-app>


    WOshow...

    什么jar包没导入

    2016-10-26 22:09:57

    共 1 条回复 >

Struts2入门

本教程带你踏上Struts2学习之旅,对Struts2进行更深入讲解

95061 学习 · 456 问题

查看课程

相似问题