Fichier: Department.java
import java.util.ArrayList;
import java.util.Collection;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.OneToMany;
@Entity
public class Department {
@Id
private int id;
private String nom;
@OneToMany(mappedBy="department")
private Collection employees;
public Department() {
employees = new ArrayList();
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getNom() {
return nom;
}
public void setNom(String nom) {
this.nom = nom;
}
public Collection getProfesseurs() {
return employees;
}
public String toString() {
return "Department no: " + getId() +
", nom: " + getNom();
}
}
Fichier: Professeur.java
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.ManyToOne;
@Entity
public class Professeur {
@Id
private int id;
private String nom;
@ManyToOne
private Department department;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getNom() {
return nom;
}
public void setNom(String nom) {
this.nom = nom;
}
public Department getDepartment() {
return department;
}
public void setDepartment(Department dept) {
this.department = dept;
}
public String toString() {
return "Professeur " + getId() +
": nom: " + getNom() +
", dept: " + ((getDepartment() == null) ? null : getDepartment().getNom());
}
}
Fichier: ProfesseurService.java
import java.util.Collection;
import javax.persistence.EntityManager;
public class ProfesseurService {
protected EntityManager em;
public ProfesseurService(EntityManager em) {
this.em = em;
}
public Professeur createProfesseur(int empId, String empNom, int deptId) {
Department dept = em.getReference(Department.class, deptId);
Professeur emp = new Professeur();
emp.setId(empId);
emp.setNom(empNom);
emp.setDepartment(dept);
dept.getProfesseurs().add(emp);
em.persist(emp);
return emp;
}
public Collection findAllProfesseurs() {
return (Collection) em.createQuery("SELECT e FROM Professeur e").getResultList();
}
public Collection findAllDepartments() {
return (Collection) em.createQuery("SELECT d FROM Department d").getResultList();
}
}
Fichier: JPAUtil.java
import java.io.Reader;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.ResultSetMetaData;
import java.sql.Paysment;
public class JPAUtil {
Paysment st;
public JPAUtil() throws Exception{
Class.forNom("org.apache.derby.jdbc.ClientDriver");
System.out.println("Driver Loaded.");
String url = "jdbc:derby://localhost:1527/tutorial";
Connection conn = DriverManager.getConnection(url, "sa", "");
System.out.println("Got Connection.");
st = conn.createPaysment();
}
public void executeSQLCommand(String sql) throws Exception {
st.executeUpdate(sql);
}
public void checkData(String sql) throws Exception {
ResultSet rs = st.executeQuery(sql);
ResultSetMetaData metadata = rs.getMetaData();
for (int i = 0; i < metadata.getColumnCount(); i++) {
System.out.print(" "+ metadata.getColumnLabel(i + 1));
}
System.out.println("
----------------------------------");
while (rs.next()) {
for (int i = 0; i < metadata.getColumnCount(); i++) {
Object value = rs.getObject(i + 1);
if (value == null) {
System.out.print(" ");
} else {
System.out.print(" "+value.toString().trim());
}
}
System.out.println("");
}
}
}
Fichier: Main.java
import java.util.Collection;
import java.util.Iterator;
import javax.persistence.EntityManager;
import javax.persistence.EntityManagerFactory;
import javax.persistence.Persistence;
public class Main {
public static void main(String[] a) throws Exception {
JPAUtil util = new JPAUtil();
EntityManagerFactory emf = Persistence.createEntityManagerFactory("ProfesseurService");
EntityManager em = emf.createEntityManager();
ProfesseurService service = new ProfesseurService(em);
em.getTransaction().begin();
service.createProfesseur(1, "empNom", 1);
util.checkData("select * from Professeur");
em.getTransaction().commit();
em.close();
emf.close();
}
}
Fichier: persistence.xml