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

com.jfinal.json.FastJson Maven / Gradle / Ivy

The newest version!
/**
 * Copyright (c) 2011-2023, James Zhan 詹波 ([email protected]).
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.jfinal.json;

import java.lang.reflect.Type;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.parser.ParserConfig;
import com.alibaba.fastjson.serializer.ObjectSerializer;
import com.alibaba.fastjson.serializer.SerializeConfig;
import com.alibaba.fastjson.serializer.SerializerFeature;
import com.jfinal.plugin.activerecord.Record;

/**
 * Json 转换 fastjson 实现.
 */
public class FastJson extends Json {
	
	static {
		// 支持序列化 ActiveRecord 的 Record 类型
		SerializeConfig.getGlobalInstance().put(Record.class, new FastJsonRecordSerializer());
		
		// 完全禁用 autoType,提升安全性
		try {
			ParserConfig.getGlobalInstance().setSafeMode(true);
		} catch (Throwable e) {
			// 老版本 fastjson 无 setSafeMode(boolean) 方法
			com.jfinal.kit.LogKit.logNothing(e);
		}
	}
	
	public static FastJson getJson() {
		return new FastJson();
	}
	
	public String toJson(Object object) {
		// 优先使用对象级的属性 datePattern, 然后才是全局性的 defaultDatePattern
		String dp = datePattern != null ? datePattern : getDefaultDatePattern();
		if (dp == null) {
			return JSON.toJSONString(object);
		} else {
			return JSON.toJSONStringWithDateFormat(object, dp, SerializerFeature.WriteDateUseDateFormat);	// return JSON.toJSONString(object, SerializerFeature.WriteDateUseDateFormat);
		}
	}
	
	/**
	 * 支持传入更多 SerializerFeature
	 * 
	 * 例如:
	 *    SerializerFeature.WriteMapNullValue 支持对 null 值字段的转换
	 */
	public String toJson(Object object, SerializerFeature... features) {
		String dp = datePattern != null ? datePattern : getDefaultDatePattern();
		if (dp == null) {
			return JSON.toJSONString(object);
		} else {
			return JSON.toJSONStringWithDateFormat(object, dp, features);
		}
	}
	
	public  T parse(String jsonString, Class type) {
		return JSON.parseObject(jsonString, type);
	}
	
	public static void setSafeMode(boolean safeMode) {
		ParserConfig.getGlobalInstance().setSafeMode(safeMode);
	}
	
	public static void addSerializer(Type type, ObjectSerializer value) {
		SerializeConfig.getGlobalInstance().put(type, value);
	}
}






© 2015 - 2024 Weber Informatics LLC | Privacy Policy