私の質問は: 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();
}
同じアクションクラスで?
よろしくお願いします。