我无法获取位于另一个对象内部的对象中的字段。我可以得到一些领域,但其他人没有。
这是我为重现此错误而创建的测试。
public void commentTest(){
try {
new MyUser("mauri@mail.com","Maurizio Pozzobon","01","facebook","hash").insert();
} catch (Exception e) {}
MyUser user = MyUser.findByEmail("mauri@mail.com");
Place place = new Place(user,"posto","bel posto",null,null);
place.insert();
assertNotNull(user);
Event e =new Event(user,place, "Festa","Questa è una gran bella festa",null,new Date(),(long) 10,false,null);
e.insert();
assertNotNull(user.nome);
EventComment ec = new EventComment(user, e, "TestComment", new Date());
ec.insert();
List<EventComment> ecs = e.comments.fetch();
for (EventComment comment : ecs) {
assertNotNull(comment.user.id);
MyUser us= MyUser.findById(comment.user.id);
assertNotNull(us.nome);
assertNotNull(comment.user.nome);
}
}
它在线上失败
assertNotNull(comment.user.nome);
这不是一个交易破坏者,因为我仍然可以到达该字段对数据库进行其他调用,但我可以访问某些字段而其他字段不能访问似乎很奇怪
在 MyUser 中,我尝试使用和不使用以下注释来声明“nome”字段
@Column("nome")
@Max(200) @NotNull
public String nome;