默認(rèn)Action跳轉(zhuǎn)問題
我在地址欄上輸http://localhost:8080/HelloWorld/helloworld_aaa.action報(bào)的還是404錯(cuò)誤,不是默認(rèn)action的網(wǎng)頁(yè)
helloworld.xml:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.3//EN"
"http://struts.apache.org/dtds/struts-2.3.dtd">
<struts>
<package name="default" namespace="/" extends="struts-default">
<default-action-ref name="index"></default-action-ref>
<action name="index">
<result>/error.jsp</result>
</action>
<action name="helloworld_*" class="com.imooc.action.HelloWorldAction">
<result>{1}.jsp</result>
</action>
</package>
</struts>
2017-08-25
少了一個(gè)method="{1}"吧