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

quarkus.springboot.tests.data.springboot-properties.source0.Config Maven / Gradle / Ivy

The newest version!
import org.springframework.boot.context.properties.ConfigurationProperties;

@ConfigurationProperties(prefix="my")
public class Config {

    private List servers = new ArrayList();

    public List getServers() {
        return this.servers;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy