Skip Headers
Oracle TopLink Developer's Guide
10g Release 3 (10.1.3)
B13593-01
  Go To Documentation Library
Home
Go To Product List
Solution Area
Go To Table Of Contents
Contents
Go To Index
Index

Previous
Previous
Next
Next
 

Configuring TopLink Workbench With Source Control Management Software

You can use TopLink Workbench with a source control management (SCM) system to facilitate enterprise-level team development (see "Using a Source Control Management System"). If you have a small development team, you can manage the changes from within XML files (see "Sharing Project Objects").

When using a TopLink Workbench project in a team environment, you must synchronize your changes with other developers. See "Merging Files" for more information.

Using a Source Control Management System

If you use an enterprise, file-based source control management system to manage your Java source files, you can use the same system with your TopLink Workbench project files. These project files are maintained by TopLink Workbench and written out in XML file format.

The check in and check out mechanism for the source control system defines how to manage the source (the XML source and TopLink Workbench project file) in a multiuser environment.

Checking Out and Checking In TopLink Workbench Project Files

Although your actual development process will vary depending on your SCM tool, a typical process involves the following steps:

  1. Determine (based on your SCM system) which files to retrieve from the source management system.

  2. Edit the project using TopLink Workbench.

  3. Save the edited project. If TopLink Workbench displays the Read-Only Files dialog box, make a note of these files, they must be unlocked and possibly merged. See "Working With Locked Files" for more information.

  4. Merge the required project files. See "Merging Files" for details.

  5. Check in the modified files, then retrieve from the repository any files that have been added or modified for this TopLink Workbench project.

Merging Files

The most difficult aspect of application development is merging changes from two (or more) development team members that have simultaneously edited the same file. If one developer checks in his or her changes, a merge condition exists. Use a file comparison tool to determine the merged aspects of the project. The files to edit will vary, depending on the type of merge:

Example 4-1 and Example 4-2 demonstrate a merge out merging technique.

Merging Project Files

Project files contain references to the objects in the project. Generally, your project <projectName>.mwp contains the following elements:

  • Database information – <database>

    • Database tables – <tables>

  • Descriptors – <descriptors>

  • Repository – <repository>

    • Classes – <classpath-entries>

Changes in these parts of the .mwp file are usually caused by adding, deleting, or renaming project elements.

To merge project files, you will generally need to merge a project file if another developer has added or removed a descriptor, table, or class, and checked in the project while you were adding or removing descriptors, tables, or classes from the same project. To merge the project's .mwp file, use this procedure:

  1. Perform a file comparison between the <projectName>.mwp file in the repository and your local copy. The file comparison shows the addition or removal of a project element inside the owner (that is, <database>, <descriptors>, or <repository>).

  2. Insert the XML script to, or delete from your local <projectName>.mwp file (inside the corresponding owner element). This brings your local code up-to-date to the current code in the code repository.

  3. Retrieve any updated files, as indicated by your source control system.

Your local source now matches the repository.

Example 4-1 Merging Projects

Another developer has added and checked in a new Employee class descriptor to the com.demo package while you were working with the same TopLink Workbench project. To merge your work with the newly changed project, follow these steps:

  1. Perform a file comparison on the <projectName>.mwp file to determine the differences between your local file and the file in the repository. Your SCM system may show the file in merge status.

    The file comparison shows the addition of the <package-descriptor> tag and a <name> element inside that tag:

    <package-descriptor>
        <name>com.demo.Employee.ClassDescriptor</name>
    </package-descriptor>
    
    
  2. Insert this XML into your <projectName>.mwp file (inside the <descriptors> element) to bring it up-to-date with the current files in the source repository.

  3. Retrieve any new or updated files from your source control system. This includes the newly added Employee class descriptor.

  4. Check in files that you have modified.

Merging Table, Descriptor, and Class Files

Developers who concurrently modify the same existing table, descriptor, or class file will create a merge condition for the following files:

  • Table – <tableName>.xml (one for each table)

  • Descriptor – <descriptorName.type>.xml (one for each descriptor)

  • Class – <className>.xml (one for each class)

TopLink Workbench changes these files when saving a project if you have changed any of the contents within them (such as adding a mapping to a descriptor, adding an attribute to a class, or a changing a field reference in a table).

If another developer has changed an attribute in a table, descriptor, or class, while you were changing a different mapping on that same descriptor, you will need to merge your project. To merge your project, use this procedure:

  1. Perform a file comparison on the specific .xml files in merge status (that is, table, descriptor, or class). The file comparison shows the addition or removal of an XML element.

  2. Insert the XML script to, or remove from your local .xml file to bring it up-to-date with the current files in the source repository.

Example 4-2 Merging Files

Another developer has added and checked in the firstName mapping to the Employee class descriptor while you were changing a different mapping on that same descriptor. To merge your work with the newly changed project, use this procedure:

  1. Perform a file comparison on the com.demo.Employee.ClassDescriptor.xml file located in <projectRoot>/Descriptor/ directory that is in merge status.

    The file comparison shows the addition of the <mapping> tag and the elements inside that tag:

    <mapping>
        <uses-method-accessing>false</uses-method-accessing>
        <inherited>false</inherited>
        <read-only>false</read-only>
        <instance-variable-name>firstName</instance-variable-name>
        <default-field-names>
            <default-field-name>direct field=</default-field-name>
        </default-field-names>
        <field-handle>
            <field-handle>
                <table>EMPLOYEE</table>
                <field-name>F_NAME</field-name>
            </field-handle>
        </field-handle>
    <mapping-class>MWDirectToFieldMapping </mapping-class>
    </mapping>
    
    
  2. Insert this XML block into your local com.demo.Employee.ClassDescriptor.xml file (inside the existing <mapping> element) to bring it up to date to the current files in the source repository.

  3. Retrieve any new files noted as missing by your source control system. This includes any tables or descriptors that may be referenced by the new mapping.

  4. Check in files that you have modified.

Sharing Project Objects

You can also share project objects by copying the table or descriptor files into the appropriate directories in the target project.

After copying the files, insert a reference to the table, descriptor, or class in the appropriate place in the <projectName>.mwp file. All references contained within the project file must refer to an existing object in the project.

Managing the ejb-jar.xml File

When working in a team environment, manage the ejb-jar.xml file similarly to the .xml project files. TopLink Workbench edits and updates the ejb-jar.xml file, if necessary, when working with an EJB project.

If you use a version control system, perform the same check in and check out procedures. For merge conditions, use a file comparison tool to determine which elements have been added or removed. Modify the file as necessary and check in the file to exercise version control on your work.

Working With Locked Files

When working in a team environment, your source control system may lock files when you retrieve them from the repository. If TopLink Workbench attempts to save a locked file, the Version Control Assistance dialog box appears, showing the locked files.

Figure 4-3 Version Control Assistance Dialog Box

Description of Figure 4-3 follows
Description of "Figure 4-3 Version Control Assistance Dialog Box"

Select one of the following methods to save your project:

  • Use your source control system to unlock the files, and then click Save.

  • Click Save As to save the project to a new location.

See "Saving Projects" for more information.