Java Persistane: Exemple de un à plusieur

Author:

Fichier: Professeur.java

import javax.persistence.CascadeType;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.ManyToOne;

@Entity 
public class Professeur {
    @Id private int id;
    private String nom;
    private long salaire;
    private int vacationDays;
    
    @ManyToOne(cascade={CascadeType.REFRESH})
    private Professeur manager;
    

    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 long getSalary() {
        return salaire;
    }
    
    public void setSalary(long salaire) {
        this.salaire = salaire;
    }
    
    public int getVacationDays() {
        return vacationDays;
    }

    public void setVacationDays(int vacation) {
        this.vacationDays = vacation;
    }

    
    public Professeur getManager() {
        return manager;
    }
    
    public void setManager(Professeur manager) {
        this.manager = manager;
    }

    public String toString() {
        return "Professeur id: " + getId() + " nom: " + getNom() +
               " vacation: " + getVacationDays() + " salaire: " + getSalary();
    }
}


Fichier: ProfesseurService.java

import java.util.Collection;

import javax.persistence.EntityManager;
import javax.persistence.Query;

public class ProfesseurService {
  protected EntityManager em;

  public ProfesseurService(EntityManager em) {
    this.em = em;
  }

  private Professeur emp;
  private long loadTime;
  long REFRESH_THRESHOLD = 3000;
  
  public void createProfesseur(Professeur employee){
    em.persist(employee);
  }
  
  
  public void loadProfesseur(int id) {
    emp = em.find(Professeur.class, id);
    if (emp == null)
      throw new IllegalArgumentException("Unknown employee id: " + id);
    loadTime = System.currentTimeMillis();
  }

  public Professeur getProfesseur() {
    return emp;
  }

  public void deductProfesseurVacation(int days) {
    refreshProfesseurIfNeeded();
    emp.setVacationDays(emp.getVacationDays() - days);
  }

  public void adjustProfesseurSalary(long salaire) {
    refreshProfesseurIfNeeded();
    emp.setSalary(salaire);
  }

  private void refreshProfesseurIfNeeded() {
    if ((System.currentTimeMillis() - loadTime) > REFRESH_THRESHOLD) {
      em.refresh(emp);
      loadTime = System.currentTimeMillis();
    }
  }

  public Collection findAllProfesseurs() {
    Query query = em.createQuery("SELECT e FROM Professeur e");
    return (Collection) query.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 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();



    util.checkData("select * from CONTRACT_EMP");

    em.getTransaction().commit();
    em.close();
    emf.close();
  }
}






Fichier: persistence.xml