
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