codecamp

Action的继承

对已经存在的action,还可以写一个实体类来继承它,如编写了如下action

@ActionAnnotation(alias="user",path="/hr/u")
public class UserAction extends Action
{
	public void m1()
	{
		out.print("user m1");
	}
	
	@ActionAnnotation(path="/info/2")
	public void m2()
	{
		out.print("user m222");
	}
}


可以继承如下

public class SubUserAction extends UserAction
{
	public void su()
	{
		out.print("SubUserAction su");
	}

	@Override
	public void m1() {
		super.m1();
	}

	@Override
	public void m2() {
		super.m2();
	}
}

访问如下

http://localhost/demo/subuseraction/su

输出

SubUserAction su




参数moveIndex
自定义特定功能Action
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }