问题描述
您能告诉我我在做什么错吗?
@ApiModel(value = "ContainerSearchResultV2")
public class earchApiResultV2 extends SearchApiResult {
private Set<Journal> journals = new HashSet<>();
getters and setters
}
public class Journal extends Entity<Journal> {
private String name;
private Optional<String> url;
Getter and setter methods
}
public abstract class Entity<T> implements Serializable {
protected Set<EntityIdentifier> identifiers = new HashSet<>();
protected Optional<String> source = Optional.empty();
protected Set<T> mergedWith = new HashSet<>();
Getter and setter methods
}
在swagger文档中,我得到的Journal模型如下所示
期刊{ 名称字符串 网址字串 }
我在招摇的文档中没有从Entity继承字段
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)