Why Ebean returns null for no reason?

↘锁芯ラ 提交于 2019-11-27 03:35:31

问题


Using Play Framework, I have a model like this :

class MyModel extends Model {
    // Some columns

    @ManyToOne
    public OtherModel other;

    public OtherModel getOther() {
        return other;
    }
}

For a reason I can't understand, if I call myModel.other OR myModel.getOther() (myModel being an instance of MyModel), I got a Null value, even if it should return an instance of OtherModel !

Moreover, if I change the getOther() methods to this :

public OtherModel getOther() {
    console.log (String.valueOf(other));
    return other;
}

getOther() returns the expected instance of OtherModel

Why do I get this, and how to fix this odd behavior?


回答1:


I had a similar problem (but I did not need the console.log statement).

All I did was just replacing public fields by private ones, and using public getters & setters. I think it was a Playframework bug, but I don't find where I saw that.



来源:https://stackoverflow.com/questions/13011874/why-ebean-returns-null-for-no-reason

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!