我正在使用下面的代码使用 struts2-hibernate 获取 json,在 getZone 方法中我用于 HttpServletResponse response= (HttpServletResponse) ActionContext.getContext().get(StrutsStatics.HTTP_RESPONSE);
返回 json。代码工作正常,但我有点困惑,想知道struts2中是否还有其他可以实现相同工作的方法,比如为HttpServletResponse使用其他一些struts2内置方法。
谁能告诉我一些解决方案
public void getZone() {
HttpServletResponse response= (HttpServletResponse) ActionContext.getContext().get(StrutsStatics.HTTP_RESPONSE);
try {
JSONObject zoneAreas = Hibernateclass.getZone(Id, organId);
response.getWriter().write(zoneAreas.toString());
} catch (IOException e) {
e.printStackTrace();
}
}