controller « POJO « JPA Q&A





1. How do I make JPA POJO classes + Netbeans forms play well together?    stackoverflow.com

I started using netbeans to design forms to edit the instances of various classes I have made in a small app I am writing. Basically, the app starts, an initial set ...

2. Passing complex JPA Entities to the controller with POJO    stackoverflow.com

My team is coding an application that involves editing wikipedia-like pages. It is similar to the problem we have with registration: A straightforward implementation gives something like

public static void doRegistration(User user) {
//...
}
The user ...