Appfuse Persistence(基于Appfuse的持久层开发)
About this Tutorial
This tutorial creates a new database table and the Java code to access that table.
You create an object and then some more classes to persist (save/retrieve/delete) that object from the database. In Java speak, this object is called a Plain Old Java Object (POJO). This object basically represents a database table. With AppFuse, there is a Generics-based DAO and Manager that will CRUD all objects for you. The only time you'll need to create DAOs is when you want custom behavior or if you need finders.
AppFuse uses Hibernate for its default persistence layer. Hibernate is an Object/Relational (O/R) Framework that allows you to relate your Java Objects to database tables. It allows you to very easily perform CRUD (Create, Retrieve, Update, Delete) on your objects.
To get started creating a new Object and table in AppFuse's project structure, please complete the instructions below.
Table of Contents
Create a new POJO and add JPA Annotations
The first thing you need to do is create an object to persist. Create a simple "Person" object (in the src/main/java/**/model directory for the basic archetypes or the core/src/main/java/**/model directory for the modular archetypes) that has an id, a firstName and a lastName (as properties). For recommend package-naming conventions, see the FAQ. These tutorials use "org.appfuse.tutorial" as the root package name.
package
org.appfuse.tutorial.model; import
org.appfuse.model.BaseObject; import
javax.persistence.Entity; import
javax.persistence.GenerationType; import
javax.persistence.Id; import
javax.persistence.GeneratedValue; import
javax.persistence.Column; public
class
Person extends
BaseObject { private
Long id; private
String firstName; private
String lastName; /* Generate
your getters and setters using your favorite IDE: In
Eclipse: Right-click
-> Source -> Generate Getters and Setters Generate
toString(), hashCode() and equals() methods using your favorite IDE: In
Eclipse: Right-click
-> Source -> Generate toString(), hashCode(), equals()
*/ } |
Now that you have this POJO created, you need to add JPA annotations. These annotations are used by Hibernate to map objects → tables and properties (variables) → columns.
First of all, add an @Entity
annotation that signifies what table this object relates to. The "name" is optional; the class name is used if it's not specified. Make sure you import annotations from javax.persistence.*
rather than from
Hibernate.
@Entity public
class
Person extends
BaseObject { |
You also have to add an @Id
annotation to signify the primary key. The @GeneratedValue
annotation should also be specified to indicate the primary key generation strategy.
@Id
@GeneratedValue (strategy
= GenerationType.AUTO) public
Long getId() { return
this .id; } |
For the rest of the fields, you aren't required to annotate them unless you want to 1) exclude them from being persisted (with @Transient
) or 2) want to change their column name or other attributes. To change the column names, use the @Column
annotation.
Add the @Column
annotation to both thegetFirstName() and getLastName() methods.
@Column (name= "first_name" ,
length= 50 ) public
String getFirstName() { return
this .firstName; } ... @Column (name= "last_name" ,
length= 50 ) public
String getLastName() { return
this .lastName; } |
Create a new database table from the object using Maven
Open src/main/resources/hibernate.cfg.xml for the basic archetypes (or core/src/main/resources/hibernate.cfg.xml for the modular archetypes) and register your Person object with the following XML:
< mapping
class = "org.appfuse.tutorial.model.Person" /> |
Save the file and run mvn test-compile hibernate3:hbm2ddl from the command line. For modular projects, make sure you run this command from the "core" directory. This will generate your database schema with the "person" table included.
以上教程摘自Appfuse官网:http://appfuse.org/display/APF/Persistence