I'm creating a JAVA EE project with JPA and JSF primefaces on a glassfish server.
Development environment is ECLIPSE IDE
Here is what I've done so far:
- I Created the database in SQLServer (3tables, not that complicated structure)
- I generated the entities from my table using JPA (eclipse offer this option...)
Here is what I want to do:
- Generate the entity managers (session beans) for my entities so I can manage and create records in my database
- finally I will create a UI using primefaces to display and edit and manage these records..
Question: Am I on the right path ? (conception level, or am I missing something out) + How to do my next step and that is generate the entity managers for my entities, Thanks in advance!