JPA implementation of the "Core" Cooks Arm DAO interfaces.
This project contains the following components:
Component Name | Package Name | Description |
---|---|---|
JPA DAO Implementations | com.swingtech.cooksarm.core.dao.jpa | Implementation classes of all core DAO interfaces. Uses Hibernate implementation of the standard Java Persistence API (JPA) to manage data in a database. |
Annotated JPA model classes | com.swingtech.cooksarm.core.dao.jpa.db.model | Annotated JPA Entity classes that are mapped to the Cooks Arm database tables & fields. |
Model DataMappers | com.swingtech.cooksarm.core.dao.jpa.mapper | DataMappers for mapping Cooks Arm domain models to/from annotated JPA model classes. |