net.sf.json.JSONException Property 'data' has no getter method in class 的问题解决

前端之家收集整理的这篇文章主要介绍了net.sf.json.JSONException Property 'data' has no getter method in class 的问题解决前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1.异常:


net.sf.json.JSONException: java.lang.NoSuchMethodException: Property 'data' has no getter method in class 'class cn.ac.iscas.gz.sems.web.controller.MGDFileController$MGDFCFeedBackBean'
at net.sf.json.JSONObject._fromBean(JSONObject.java:987)


2.原来的源码:

	/**
	 * 地图采点数据文件控制反馈信息类
	 * @author LiangQiYe / macrotea@qq.com
	 * @version v1.0
	 * @date 2012-4-10 下午06:58:47
	 * @note
	 */
	class MGDFCFeedBackBean{
		private String msg;
		private Object data;
		

3.解决问题:

public class MGDFCFeedBackBean

原文链接:https://www.f2er.com/json/290684.html

猜你在找的Json相关文章