Spring Boot - Application Configuration
Identify the error in this custom properties class that prevents property binding:
@ConfigurationProperties(prefix = "server")
public class ServerProperties {
private String port;
public String getPort() { return port; }
// Missing setter method
}