How can I make mongoDB return all the data from DBRef using springboot?
I have three classes in my Java project: @Document(collection = "foos") public class Foo { @Id private String id; private String foo_name; private Set<Bar> bars; } @Document(collection = "bazs") public class Baz { @Id private String id; private String baz_name;…