Creating a Data Capture Form using EJB + JPA and ADF Binding
Java EE technology stack has been improved tremendously in recent past. However, a closer look at this technology spectrum reveals the visible gap that exists between the UI and Service layers. Core Java EE stack really lacks a smart glue layer that avoids large chunk of boiler plate code used for wiring UI with business data. For a typical Java EE business application, we can say that about 20-25% coding effort is being spent for wiring UI to the data from business services and other common UI manipulations such as synchronizing master-child relations, querying entities and displaying results, navigating between records, invoking actions etc. Binding the UI with EJB Is there any matured binding solution available for Java EE technology stack? Answer is YES, Your friend is ADF binding layer who can really help you to bridge the gap between UI and business service layer. Seeing is Believing So let us try building a data capture form using Java EE technology stack with the help ...