我的问题是:如果使用 struts2-jquery-plugin+struts2-json-plugin,我可以定义许多函数,例如:
@Actions( {
@Action(value = "/func1", results = {
@Result(name = "str1", type = "json")
})
})
public String func1(){
//instructions
return "str1";
}
@Actions( {
@Action(value = "/func2", results = {
@Result(name = "str2", type = "json")
})
})
public String func2(){
//instructions
return "str2";
}
和许多 JSON 方法获取器,例如:
public String getJSON1()
{
func1();
}
public String getJSON2()
{
return func2();
}
在同一个动作课上?
非常感谢您。