我正在尝试在加载父对象时加载子对象,但是由于某些原因,我只能获得父对象。
这是我的子对象:
apply
这是我的父对象:
import re
df['colors'].apply(lambda str : [int(s) for s in re.findall(r'\d+',str) ]).tolist()
# [[120, 120, 80], [90, 10, 100]]
当我使用genericDAO的find方法时,@Entity
@Access(AccessType.FIELD)
@Table(name = "HA2_RESSOURCENBUCHUNGEN")
public class Ressourcenbuchung implements Serializable {
/**
*
*/
private static final long serialVersionUID = -2489159602487241894L;
private int schuelerId;
@ManyToOne(fetch = FetchType.EAGER)
private Section section;
的我的节ArrayList始终为0,但是如果我加载所有节,它都可以工作吗?