0

我有这样的 index.jsp

<% response.sendRedirect("home.action"); %>

我想调用那个动作http://localhost:8080/Myapp

但我想删除 index.jsp 并尝试使用

<default-action-ref name="home"/>
<action name ="home"---- 

但我收到 404 错误,指定该操作不存在在这种情况下该怎么办?当我在动作(类)控件中放置断点时,控件没有起作用,所以我认为这<default-action-ref name="home"/>不起作用

请提供一些有用的输入?

4

2 回答 2

0

我使用了一个简单的逻辑

<action name="regi">
<result name="success" type="tiles">regi.tiles</result>
</action>
<action name="registration" class="com.regform">
<result name="success" type="redirect">regi.action</result>
</action>
于 2013-04-02T12:04:39.370 回答
0

我认为这不是一个好主意,但它会满足您的要求。

<action name="">
    <result type="redirectAction">home</result>
</action>
于 2012-11-19T12:38:10.070 回答