com.iiifi.kite.boot.properties.KiteJacksonProperties Maven / Gradle / Ivy
package com.iiifi.kite.boot.properties;
import lombok.Getter;
import lombok.Setter;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.cloud.context.config.annotation.RefreshScope;
/**
* jackson 配置
* @author [email protected] 花朝
* @date 2018/8/18 12:59
*/
@Getter
@Setter
@RefreshScope
@ConfigurationProperties("kite.jackson")
public class KiteJacksonProperties {
/**
* null 转为 空,字符串转成"",数组转为[],对象转为{}
*/
private Boolean nullToEmpty = Boolean.FALSE;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy