com.ruijc.fastjson.FastJsonProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-boot-starter-fastjson Show documentation
Show all versions of spring-boot-starter-fastjson Show documentation
Springboot自动化配置Fastjson框架并支持JSONP操作。
package com.ruijc.fastjson;
import org.springframework.boot.context.properties.ConfigurationProperties;
import java.util.List;
@ConfigurationProperties("spring.http.converters.fastjson")
public class FastJsonProperties {
private List features;
public List getFeatures() {
return features;
}
public void setFeatures(List features) {
this.features = features;
}
}