org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter配置文件时无法跳转
可能原因:
1:拼写有误
2:有部分jar包没有添加
There is no Action mapped for namespace [/] and action name [] associated with context path [/HelloWorld].
报错,求助。
最近忙,没上慕课。解决了,但是又出了新问题。价格关注吧。到时相互提高
你可以贴下一的你的struts.xml配置文件
喔,解决了。但是 最后还是不能正确的yunxing
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里
不会吧,以下是我敲的代码
<?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>