Search code examples
javapojo

easy way to make many pojo into one pojo


Am having a registration form which has multiple pages. So, I am mapping one page to one pojo. Finally, when I processing with database, I want to make it as single pojo to commit. Any idea to simplify this model.

Thanks :)


Solution

  • You can create a wrapper POJO which holds your other POJO's with additional helper methods in the master POJO.