Skip to content

Commit

Permalink
增加 NumberSerializer 注释
Browse files Browse the repository at this point in the history
  • Loading branch information
YunaiV committed Nov 30, 2022
1 parent cb0daf3 commit 650133d
Showing 1 changed file with 9 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,26 @@
import com.fasterxml.jackson.databind.annotation.JacksonStdImpl;

import java.io.IOException;

/**
* Long序列化规则
* <p>
* 会将超长long值转换为string
* Long 序列化规则
*
* 会将超长 long 值转换为 string,解决前端 JavaScript 最大安全整数是 2^53-1 的问题
*
* @author 星语
*/
@JacksonStdImpl
public class NumberSerializer extends com.fasterxml.jackson.databind.ser.std.NumberSerializer {

private static final long MAX_SAFE_INTEGER = 9007199254740991L;
private static final long MIN_SAFE_INTEGER = -9007199254740991L;

public static final NumberSerializer INSTANCE = new NumberSerializer(Number.class);

public NumberSerializer(Class<? extends Number> rawType) {
super(rawType);
}

@Override
public void serialize(Number value, JsonGenerator gen, SerializerProvider serializers) throws IOException {
// 超出范围 序列化位字符串
Expand Down

0 comments on commit 650133d

Please sign in to comment.