Read Digital Edition


ADS BY GOOGLE
Top Three Links You Must Click On


Simplifying EJB Development with XDoclet and BEA WebLogic
Simplifying EJB Development with XDoclet and BEA WebLogic

Are you tired of going through the cumbersome process of creating local/remote component and home interfaces for your EJBs, as well as the necessary WebLogic XML deployment descriptors?

Wouldn't it be wonderful to develop only the particular EJB bean file and have another tool generate all of the necessary interfaces and WebLogic deployment descriptors? Look no further: XDoclet to the rescue! XDoclet is an open-source tool that uses attribute-oriented programming concepts to automatically generate various source code files based on embedded XDoclet-specific javadoc comments. XDoclet is used in conjunction with the Ant build tool to process the various XDoclet comments in the developer's main EJB file. In this article I'll demonstrate how to use XDoclet with BEA WebLogic server to handle the creation of CMP Entity beans and container-managed relationships among CMP entity beans, as well as how to use the various WebLogic-specific XDoclet tags. (Note: The source code was generated using XDoclet 1.2 Beta and Ant 1.5. The source code for this article can be found at www.sys-con.com/weblogic/ sourcec.cfm).)

XDoclet Basics
So how does a developer actually use XDoclet? I've provided a simple business domain model that is implemented as three CMP entity beans with the following relationships:

  • Doctor Bean [M <--> N] Patient Bean (Bidirectional)
  • Patient Bean [1 <--> M] Illness Bean (Unidirectional)
  • Doctor Bean [1 <--> 1] Illness Bean (Bidirectional)

    To simplify matters we assume that:

    1. A doctor can have multiple patients.
    2. A patient can be seen by multiple doctors.
    3. A patient can have more than one illness.
    4. Only one patient can have a certain illness.
    5. Only one doctor can cure any one illness.
    XDoclet is comprised of two types of tags: class-level and method-level tags. Class-level tags are used to set properties of the EJB that characterize a main function, such as the actual bean type and the JNDI name that will be used to locate the EJB. Other options specify the name of the EJB, finder methods, transaction settings, as well as other WebLogic-specific settings. The following is an example from the Doctor bean:

    /**
    * CMP Bean utilizing XDoclet tags to represent a
    * Doctor entity.
    *
    * @ejb.bean
    * name="Doctor"
    * type="CMP"
    * local-jndi-name="Doctor"
    * primkey-field="doctorId"
    * view-type="local"
    *
    * @ejb.persistence
    * table-name="doctor"
    *
    * @ejb.transaction
    * type="Required"
    */

    Method-level tags specify attributes such as a particular method's transactional configuration (if it should appear in the remote/local component interface), create methods, relationship attributes, etc. The following is an example from the Illness bean:

    /**
    * @ejb.interface-method
    * @ejb.relation
    * name="Doctor-Illness"
    * role-name="Illness-Has-Doctor"
    *
    * @weblogic.column-map
    * foreign-key-column="doctor_id"
    * key-column="doctor_id"
    *
    */
    public abstract DoctorLocal getDoctor();

    Container-Managed Relationships
    One of the rather challenging tasks for XDoclet newcomers is establishing various container-managed relationships among CMP entity beans via the XDoclet tags. XDoclet handles relationships with the @ejb.relation tag and @weblogic.column-map for specifying the familiar <column-map> elements that must be listed in the weblogic-cmp-rdbms-jar.xml file. Let's look at an example from PatientBean.java:

    /**
    * @ejb.interface-method
    * @ejb.relation
    * name="Doctors-Patients"
    * role-name="Patients-Have-Doctors"
    *
    * @weblogic.relation
    * join-table-name="doctor_patient_link"
    *
    * @weblogic.column-map
    * foreign-key-column="patient_id_fk"
    * key-column="patient_id"
    *
    */
    public abstract Collection getDoctors();

    Here we are specifying a many-to-many relationship between the Doctor and the Patient beans. The name and role-name attributes will be used to generate the necessary elements in the ejb-jar.xml file. The WebLogic-specific tags specify a common join table for the relationship as well as the <column-map> elements that will be used in the generated weblogic-cmp-rdbms-jar.xml file. A bidirectional relationship is implied here due to the corresponding XDoclet relationship tags in DoctorBean.java. To demonstrate how a windirectional relationship is described, let's look at PatientBean,java.

    /**
    * @ejb.interface-method
    * @ejb.relation
    * name="Patients-Illness"
    * role-name="Patient-Has-Illness"
    * target-ejb="Illness"
    * target-role-name="Illness-Has-Patient"
    * target-cascade-delete="yes"
    *
    * @weblogic.target-column-map
    * foreign-key-column="patient_id"
    * key-column="patient_id"
    */
    public abstract Collection getIllnesses();

    Here we are specifying a unidirectional relationship between the Patient and Illness beans. The target-ejb, target-role-name, and target-cascade-delete are used to specify the other side of the unidrectional relationship. XDoclet tags describing this particular relationship are not included in the corresponding Illness bean, since we are explicitly specifying the related entity from the Patient bean. In a unidrectional relationship, the @weblogic.target-column-map tag is used to specify the related bean's <column-map> elements.

    Other WebLogic-Specific XDoclet tags
    XDoclet supports both WebLogic 6.1 and 7.0 deployment descriptor settings. Instead of describing various WebLogic-specific characterstics for EJBs explicitly in the weblogic-ejb-jar.xml and weblogic-cmp-rdbms-jar.xml files, you can express them using XDoclet tags in the centralized EJB bean file. This eliminates the need to create these XML files manually.

    Following is an example of how to configure WebLogic to autoincrement an entity bean's primary key, set the concurrency strategy element to ReadOnly, and specify that the WebLogic server is not required to call ejbLoad() upon each new transaction:

    /**
    * @weblogic.cache
    * concurrency-strategy="ReadOnly"
    * read-timeout-seconds="5"
    *
    * @weblogic.persistence
    * db-is-shared="False"
    *
    * @weblogic.automatic-key-generation
    * generator-type="ORACLE"
    * generator-name="doctor_seq"
    * key-cache-size="10"
    */

    XDoclet provides many other WebLogic tags that allow the developer to conveniently configure features such as clustering, field groups, and relationship caching in a single bean file via Javadoc comments. Consult the XDoclet documentation for more information on these specific tags as well as other features provided by XDoclet. Utilizing the powerful capabilities of XDoclet with BEA WebLogic Server defintitely facilitates the development of EJBs.

    References

  • http://xdoclet.sourceforge.net
  • http://jakarta.apache.org/ant
  • http://dev2dev.bea.com
    About Ryan LeCompte
    Ryan LeCompte is a research assistant with the ACIM Center of the University of Louisiana at Lafayette. Ryan has been selected to engage in research and development at the Center as part of a NSF-funded Research Experiences for Undergraduates Program. He has extensive research and development experience in designing and implementing enterprise solutions based on Enterprise JavaBeans and BEA WebLogic application server technologies. He has developed various J2EE applications that have been deployed by the State of Louisiana, the University and the private sector.

  • In order to post a comment you need to be registered and logged in.

    Register | Sign-in

    Reader Feedback: Page 1 of 1

      Subscribe to our RSS feeds now and receive the next article instantly!
    In It? Reprint It! Contact advertising(at)sys-con.com to order your reprints!
    Subscribe to the World's Most Powerful Newsletters

    ADS BY GOOGLE
    But on the web, access to services is implicit in the fact that the business is offering the service...
    Intel has put out its promised beta SDK for Windows (C and C++) and Moblin (C) developers working on...
    Behaving like it’s got a future, Sun Monday put out what it calls a significant new version of Virtu...
    InformationWeek stumbled on a Microsoft patent application dating back to 2006 deceptively titled “M...
    Berlin-based ThinPrint AG, the printer virtualization house, thinks it’s got a cloud solution for th...
    The second set of charges filed last week against Indian outsourcer Satyam Computer Services founder...
    IBM has acquired Guardium, a seven-year-old subsidiary of Israel’s Log-On Software transplanted to M...
    Gartner told Reuters that it overestimated how many PCs Acer shipped in the last seven quarters by a...
    Oracle has offered to cordon off MySQL inside a combined Oracle-Sun to get the European Commission t...
    Office Web Apps, Microsoft’s answer to Google Apps, are supposed to be out sometime in June along wi...
    Gartner thinks the server business has stopped sliding into the abyss. Third-quarter sales weren’t a...
    Gartner is buying ~$40 million-a-year AMR Research Inc for close to $64 million in cash. AMD special...
    Singed by user reaction to its plans to up the price of its support contracts, SAP Tuesday postponed...
    Apparently Google Gears ain’t gonna stick around that long. Google Apps will eventually get their of...
    Oracle seems to have divided the open source ranks over the MySQL delay it’s having closing its acqu...
    The Korean government is going to sink around $172 million into cloud computing next year under a st...
    We hear – well, you know how people talk – that Oracle has been quietly meeting with the European Co...
    In response to Opera’s complaints Microsoft has reportedly modified the proposed ballot screen that’...
    Microsoft has sold the Folio and NXT businesses it got when it bought Fast Search and Transfer, the ...
    CA is looking for talent in EMEA: associate account managers, directors of solution sales, senior so...