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

com.ruijc.fastjson.FastJsonProperties Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy