La présentation est en train de télécharger. S'il vous plaît, attendez

La présentation est en train de télécharger. S'il vous plaît, attendez

Stéphane Frenot - Département Télécommunication - SID - II - EjbEnt 247 Entity EJB.

Présentations similaires


Présentation au sujet: "Stéphane Frenot - Département Télécommunication - SID - II - EjbEnt 247 Entity EJB."— Transcription de la présentation:

1 Stéphane Frenot - Département Télécommunication - SID - stephane.frenot@insa-lyon.fr II - EjbEnt 247 Entity EJB

2 Stéphane Frenot - Département Télécommunication - SID - stephane.frenot@insa-lyon.fr II - EjbEnt 248 Qu'est ce qu'un entity EJB Il présente les comportements suivants : –c'est la représentation de données persistantes –ils survivent à un crash du SA –plusieurs clients –l'instance EJB contient une copie des données du système de persistance

3 Stéphane Frenot - Département Télécommunication - SID - stephane.frenot@insa-lyon.fr II - EjbEnt 249 Gestion de la persistance Les attributs de l'objet doivent être stockés sur un support de persistance Systèmes de persistance : –Sérialisation –Mapping SGBD à travers JDBC

4 Stéphane Frenot - Département Télécommunication - SID - stephane.frenot@insa-lyon.fr II - EjbEnt 250 EJB Entité partagée Quand plusieurs clients partagent le même EJB –Ils reçoivent leur propre instance d'EJB –Partagent les données –N'ont pas à gérer la synchronisation

5 Stéphane Frenot - Département Télécommunication - SID - stephane.frenot@insa-lyon.fr II - EjbEnt 251 Clés Primaires Chaque EJB Entité possède un ensemble d'attributs qui sont uniques lorsqu'ils sont agrégés Ces attributs agrégés s'appellent la clé primaire

6 Stéphane Frenot - Département Télécommunication - SID - stephane.frenot@insa-lyon.fr II - EjbEnt 252 Mapping Objet Relationnel Le mapping stocke chaque objet dans une seule ligne d'une table Une colonne de la base est associée à chaque attribut de la classe

7 Stéphane Frenot - Département Télécommunication - SID - stephane.frenot@insa-lyon.fr II - EjbEnt 253 EJB entité identiques Deux entités sont identiques si le contenu de leur clé primaire sont identiques Persistance : –CMP : Container Managed –BMP : Bean Managed

8 Stéphane Frenot - Département Télécommunication - SID - stephane.frenot@insa-lyon.fr II - EjbEnt 254 Différence entre le dvlp Entity / Session Il faut écrire une classe représentant la PK L'interface Home présente une méthode findByPrimaryKey( ) L'interface Home peut présenter d'autres méthodes find La classe du bean implémente l'interface javax.ejb.EntityBean La classe du bean doit fournir une méthode ejbCreate ET une méthode ejbPostCreate() pour chaque méthode create de linterface home. –==> A quoi sert le postCreate ?

9 Stéphane Frenot - Département Télécommunication - SID - stephane.frenot@insa-lyon.fr II - EjbEnt 255 PK Class Une classe de clé primaire –est déclarée public –implante serializable –possède un constructeur sans argument –présente tous ses attributs public public class AlarmClockPK implements java.io.Serializable { public int serialNumber; public string currentStation; } NB : Les attributs de la PK doivent se retrouver dans le bean

10 Stéphane Frenot - Département Télécommunication - SID - stephane.frenot@insa-lyon.fr II - EjbEnt 256 Création d'un EJB entité CMP

11 Stéphane Frenot - Département Télécommunication - SID - stephane.frenot@insa-lyon.fr II - EjbEnt 257 Interfaces Home Les interfaces Home doivent inclure des méthodes de recherche public findByPrimaryKey( pk) throws FinderException, RemoteException; Les autres méthodes : public findNimporteComment(...) throws FinderException, RemoteException; public Enumeration findNimporteComment(...) throws FinderException, RemoteException;

12 Stéphane Frenot - Département Télécommunication - SID - stephane.frenot@insa-lyon.fr II - EjbEnt 258 Expression de recherche Syntaxe LISP-like opérateur opérande1 opérande2 Opérateurs disponibles –(), =,, >=, !, &, |, like Opérandes possibles –1) une autre expression –2) un attribut d'un EJB –3) un paramètre récupéré dans l invocation du find Exemple : (> balance $amount) (& (> bal $amount) (!(=accountType checking ))) (= 1 1) (like lastName M%)

13 Stéphane Frenot - Département Télécommunication - SID - stephane.frenot@insa-lyon.fr II - EjbEnt 259 Ecriture de la classe du Bean La classe doit implanter l'interface EntityBean public interface EntityBean extends EnterpriseBean { public void ejbActivate (); public void ejbPassivate(); public void ejbLoad(); public void ejbStore(); public void setEntityContext(EntityContext ctx); public void unsetEntityContext (); public void ejbRemove (); } Autres points –Les méthodes ejbCreate retournent void pour les CMP –Il nest pas nécessaire de développer des méthodes find pour les CMP

14 Stéphane Frenot - Département Télécommunication - SID - stephane.frenot@insa-lyon.fr II - EjbEnt 260 Exemple Un système de paramétrage de reveil L EJB enregistre –Lheure de lalarme –La station sélectionnée –La bande sélectionnée

15 Stéphane Frenot - Département Télécommunication - SID - stephane.frenot@insa-lyon.fr II - EjbEnt 261 Interface Remote public interface AlarmClock extends EJBObject { public Date getAlarmTime() throws RemoteException; public String getRadioStation() throws...; public boolean isFmSet() throws...; public void isFmset(boolean fm)... public void setAlarmTime(Date time)...;... setRadioStation(String station)... }

16 Stéphane Frenot - Département Télécommunication - SID - stephane.frenot@insa-lyon.fr II - EjbEnt 262 Interface Home et PK classe AlarmClock primary Key Class: public class AlarmClock implements Serializable { pulic int idAlarm; } AlarmClock interface Home public interface AlarmClockHome extends EJBHome{ AlarmClock create() throws CreateException, RemoteException; AlarmClock create(Date time, String station, boolean fm) throws CreateException, RemoteException; AlarmClock findByPrimaryKey(AlarmClock id) throws FinderException, RemoteException; Enumeration findAllFMSettings() throws FinderException, RemoteException; }

17 Stéphane Frenot - Département Télécommunication - SID - stephane.frenot@insa-lyon.fr II - EjbEnt 263 La classe du bean public class AlarmClockBean implements EntityBean{ public int idAlarm; transient protected EntityContext context; public String station; public String wakeUpTime; public boolean isFm; public void ejbActivate(){} public void ejbLoad(){} public void ejbPassivate(){} public void ejbRemove(){} public void ejbStore(){}...

18 Stéphane Frenot - Département Télécommunication - SID - stephane.frenot@insa-lyon.fr II - EjbEnt 264 La suite de la classe du Bean... this.idAlarm=(int) (Math.random()*100000); Properties props=context.getEnvironment(); this.station=props.getProperty("Station"); this.isFm=props.getProperty("isFM"); this.wakeUpTime=props.getProperty("Time"); public void ejbCreate(String time, String station, boolean isFM){ this.idAlarm=(int)(Math.Random()*100000); this.wakeUpTime=time; this.station=station; this.isFM=new Boolean(isFM).toString(); } public void ejbPostCreate(){} public void ejbPostCreate(String time, String station, boolean isFm){}

19 Stéphane Frenot - Département Télécommunication - SID - stephane.frenot@insa-lyon.fr II - EjbEnt 265 Le cas des BMP Il faut coder soit même la gestion de la persistance pour les méthodes ejbCreate, ejbRemove, ejbLoad, ejbStore La méthode ejbCreate renvoie dans ce cas une instance de la classe PK les méthodes ejbFind doivent être codées.


Télécharger ppt "Stéphane Frenot - Département Télécommunication - SID - II - EjbEnt 247 Entity EJB."

Présentations similaires


Annonces Google