Affects: Spring Boot 2.2.5 The [externalized configuration constructor binding](https://docs.spring.io/spring-boot/docs/2.2.5.RELEASE/reference/html/spring-boot-features.html#boot-features-external-config-constructor-binding) example code snippet shows an incorrect import. Inocrrect import: `import org.springframework.boot.context.properties.DefaultValue;` Correct import: `import org.springframework.boot.context.properties.bind.DefaultValue;`