在struts2中关于重定向的有关问题,求大牛

在struts2中关于重定向的问题,求大牛
首先:我的action类
package action;

public class Test {
public String one(){
System.out.println("one");
return "one";
}

public String two(){
return "two";
}
public String three(){
return "three";
}
 
}


在就是我strus.xml
<constant name="struts.enable.DynamicMethodInvocation" value="true" /> 
<package name="test" namespace="/" extends="struts-default">
     <action name="file" method="one" class="action.Test">
     <result name="one">/one.jsp</result>
     <result name="two">/two.jsp</result>
     <result name="three" type="redirect">xxxxxxxxx</result>
     </action>
    </package>


我的问题是:假如我访问action且调用three方法,则在浏览器端可以输入:http://xxxxxxx/web名/file!three,完了之后我想要他跳转到本aciotn调用two方法,那么我该在<result name="three" type="redirect">xxxxxxxxx</result>中怎么写?求大牛教
------解决方案--------------------
你action用通配符配置呗
------解决方案--------------------
你的这种需求,暂时还没有想到实现的方法,最好还是用通配符吧。而且你的那个需求感觉没有什么实际用处吧。属于个人见解
------解决方案--------------------
用ajax试一试吧
------解决方案--------------------
http://lzc0088.iteye.com/blog/506082