尝试让Swagger UI显示一个hashmap并且无处可去
我的Bean格式为
public class Foo {
private Location location;
@JsonProperty(required = true)
private HashMap<String, Bar> bars;
}
在swagger ui中产生以下模型
Foo {
bars (object, optional),
location (Location, optional)
}
我需要在这里使用一个昂首阔步的注释吗?从其他问题来看,Swagger2现在可以处理HashMaps,但我无法得到任何定义的例子。