MongoDB方法抛出了“org.springframework.data.mapping.Map异常”异常

ohtdti5x  于 2022-12-22  发布在  Go
关注(0)|答案(1)|浏览(176)

我有以下型号

@Builder
@Data
@Document(collection = "overdue")
public class MGOverdue {

    @Id
    private String id;

    private HashMap<Integer, HashMap<Integer, Overdue>> overdueList;
}

repository.findById()抛出以下异常
x一个一个一个一个x一个一个二个x
有什么建议吗

jxct1oxe

jxct1oxe1#

我不得不将@NoArgsConstructor添加到我的模型过期。它与https://stackoverflow.com/a/53210768/7691891类似

相关问题