我正在使用MongoDB进行Spring Boot。在我的一个实体中,我声明了一个ArrayList类型的字段,以便存储另一个对象的mongoId。
让我们说他们是A和B:
public class A implements Serializable {
bla bla bla
private ArrayList<String> bs;
public A(){
this.bs = new ArrayList<String>();
}
}
public class B implements Serializable {
bla bla bla...
some fields...
}
现在,我想在1个请求中返回整个对象A,这意味着我想返回带有B对象字段数组的对象,而不是String数组。
有解决方法吗?