我在我的 struts 2 应用程序中有一些请求。
使用 json 请求时,我可以看到它们运行了两次以上,甚至 5 次。为什么!
请帮忙!
我的方法声明如下:
@Actions({ @Action(value = "/getelements", results = { @Result(name = "success", type = "json") }) })
public String myelements() {
// getting elements here
}
是让它一次又一次地运行吗?