码迷,mamicode.com
首页 > 其他好文 > 详细

为什么struts2 ajax 方法执行两次

时间:2014-04-27 21:39:17      阅读:405      评论:0      收藏:0      [点我收藏+]

标签:com   class   code   http   string   art   strong   get   set   html   cti   

struts2中使用json插件执行ajax处理时,如果方法名是get方法的时候,方法会莫名其妙的执行两次。 原因: struts2 中JSON的原理是在ACTION中的get方法都会序列化,所以前面是get的方法只要没指定不序列化,都会执行解决方法

  • Action中的业务方法前别加get 或者 set(属性的get set 除外) 

  • 用@JSON(serialize=false)指定方法不序列化如import com.googlecode.jsonplugin.annotations.JSON;@JSON(serialize=false) public String getChild() throws Exception{ .............. .............. return "success"; } 

转自:http://jingyan.baidu.com/article/6c67b1d6ea5ad02787bb1e0d.html

为什么struts2 ajax 方法执行两次,码迷,mamicode.com

为什么struts2 ajax 方法执行两次

标签:com   class   code   http   string   art   strong   get   set   html   cti   

原文地址:http://www.cnblogs.com/xiaochao-cs-whu/p/3695077.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!