All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gu.simplemq.json.FastjsonEncoder2 Maven / Gradle / Ivy

There is a newer version: 2.3.17
Show newest version
package gu.simplemq.json;

import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;

class FastjsonEncoder2 extends FastjsonEncoder {
	private static final FastjsonEncoder2 INSTANCE = new FastjsonEncoder2();
	public static FastjsonEncoder2 getInstance(){
		return INSTANCE;		
	}
	private FastjsonEncoder2() {
	}

	@Override
	protected JSONObject doToJSONObject(Object bean) {
		// 直接解析成JSONObject 对象
		return  (JSONObject) JSON.toJSON(bean);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy