Spring Boot - Application Configuration
A developer wrote this class:
Why will the properties not bind correctly?
@ConfigurationProperties(prefix = "db")
public class DatabaseConfig {
private String url;
private String username;
private String password;
// no getters or setters
}Why will the properties not bind correctly?
