我正在尝试在 quarkus 中注入对象列表,但收到错误“没有为类 ExternalApiParam 注册转换器”。
我的yaml是:
custom:
external-api-list:
- name: example-1
uri: https://run.mocky.io/v3/55402172-82c3
- name: example-2
uri: https://run.mocky.io/v3/13417375-a19c
我的配置类是:
@ConfigProperties(prefix = "custom")
@Data
public class ExternalApiConfigProperties {
List<ExternalApiParam> externalApiList;
}
我错了什么?