码迷,mamicode.com
首页 > 其他好文 > 详细

struts2 动态工作流

时间:2014-06-22 22:29:18      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:des   style   class   blog   code   java   

话不多说,直接贴代码:

public class TestAction {
	private String nextPage;//保存下一步内容的属性
	
	public String destroy(){
		if(user.dontConfirm()){//决定下一步
			nextPage = LIST_PAGE;
		}else{
			nextPage = CONFIRM_PAGE;
		}
		return DESTROY;
	}
	
	public String getNextPage(){//用于动作映射工作流的方法
		return nextPage;  
	}
}

<action name="TestAction_*" method="{1}" class="TestAction">
	<result name="destroy">${nextPage}</result>
</action>


struts2 动态工作流,布布扣,bubuko.com

struts2 动态工作流

标签:des   style   class   blog   code   java   

原文地址:http://blog.csdn.net/coslay/article/details/32909193

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!