Caused by: org.springframework.boot.context.properties.bind.BindException: Failed to bind properties under 'apiconfiguration.api-list[0].query-parameters' to java.util.List
at org.springframework.boot.context.properties.bind.Binder.handleBindError(Binder.java:399)
at org.springframework.boot.context.properties.ConfigurationPropertiesBinder.bind(ConfigurationPropertiesBinder.java:94)
at org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor.bind(ConfigurationPropertiesBindingPostProcessor.java:96)
... 60 more
Caused by: java.lang.IllegalArgumentException: 'name' must not be null
Я получил этот сокращенный файл конфигурации yaml: [code]apiconfiguration: apiList: - queryParameters: - something [/code] Это мой класс Java: [code] @Getter @Setter public class ApiConfig { private List queryParameters = Collections.emptyList(); } [/code] После обновления Spring Boot до 3.5.x (пример 3.5.7) я получаю следующую ошибку: [code]Caused by: org.springframework.boot.context.properties.bind.BindException: Failed to bind properties under 'apiconfiguration.api-list[0].query-parameters' to java.util.List at org.springframework.boot.context.properties.bind.Binder.handleBindError(Binder.java:399) at org.springframework.boot.context.properties.ConfigurationPropertiesBinder.bind(ConfigurationPropertiesBinder.java:94) at org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor.bind(ConfigurationPropertiesBindingPostProcessor.java:96) ... 60 more Caused by: java.lang.IllegalArgumentException: 'name' must not be null [/code] Кто-нибудь знает, как решить эту проблему?