struts1与struts2整合ajax实现异步调用(服务器端实现)
Struts2方法一:利用reponse对象来完成Struts2封装了request和response对象,Struts2整合Ajax需要在execute()方法中利用ServletActionContext.getResonse()取得reponse对象,然后构造json对象或者xml对象,将对象输出到流中,然后打回到页面上进行处理!此方法需要在execute()中还回null,在stru...