Dev
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; @Component public class HostIdentifier { @Autowired private String hostname; @Autowired private String region; public String getHostname() { return hostname; } public void setHostname(String hostname) { this.hostname = hostname; } public String getRegion() { return region; } public void setRegion(String region) { this.region = region; } }
No comments :