他の Bean から Bean を設定したかったのです。
Example:
// this is mapped to db using hibernate.
class A {
string name;
string age;
Date dateA;
B obj;
}
// this was mapped to db but now I'd like to populate it from class A member dateA;
class B{
Date date;
}
B オブジェクトを設定しようとすると、nullpointerexception が発生しました。この問題を処理する方法はありますか?