Home > Articles > Programming > Java

This chapter is from the book

Building the Architectural Prototype: Part 2

Part 2 of building the architectural prototype for our non-EJB solution covers the use-case control class and the issues of transaction management.

Remulak Controllers and Initial Operations

The Remulak software architecture uses two types of controllers: user interface and use-case. In the previous section we covered the user interface aspects that the controller handles for us—namely, the servlet.

In this section we cover the use-case control class: UCMaintainRltnshp. To reemphasize our strategy, each use-case will have a use-case control class. Each use-case control class will have an operation for each happy and alternate pathway in the use-case. Occasionally, depending on the granularity of the use-case, some of the alternates may be handled in the course of either the happy path or one of the other alternates. Exceptions are always handled in the course of another pathway.

UCMaintainRltnshp is a JavaBean in this first analysis of use-case controllers. In Chapter 12 the same class will be made into a session EJB. However, the operation names and what they do will remain identical. Let's review, as we did with RemulakServlet, the various parts of the use-case control class, starting with the class definition and the rltnCustomerInquiry() operation referred to in the previous section:

package com.jacksonreed;
import java.util.Enumeration;
import java.util.Random;
import javax.naming.InitialContext;
import javax.naming.NamingException;
import javax.naming.NamingException;

public class UCMaintainRltnshp implements
java.io. Serializable {

  private static Random generator;
  private static TransactionContext transactionContext;

  public UCMaintainRltnshp() {
     transactionContext = new TransactionContext();
  }

  public CustomerValue rltnCustomerInquiry(String
  customerNumber){

      CustomerValue customerValue = new CustomerValue();
      CustomerBean customerHome = new CustomerBean();

      try {
        transactionContext.beginTran(false);
        customerValue = CustomerHome.findByCustomerNumber
              (transactionContext, customerNumber);
        transactionContext.commitTran();
        } catch (RemulakFinderException fe) {
        } catch (TranCommitException ce) {
        } catch (TranSysException se) {
        } catch (TranBeginException be) {
        } catch (TranRollBackException re) {
        } catch (Exception e) {
        } finally {
         customerHome = null;
        }
        return customerValue;
    }
}

The rltnCustomerInquiry() operation begins by instantiating a CustomerBean object. This step is necessary because, as you may recall, the use-case controller is akin to the conductor of an orchestra; in this case the orchestra is the use-case, and the musicians are the individual objects involved in the score. A use-case controller may send messages to only one bean or to many beans, depending on the needs of the use-case pathway. The operation then invokes beginTran() on an object called TransactionContext (more on this shortly). The CustomerBean object is sent a findByCustomerNumber() message, with both the TransactionContext object and the customerNumber attribute passed in. The result returned from this operation is our populated Customer Value object.

The last thing that happens in this use-case pathway operation is that the TransactionContext object receives a commitTran() request. The rest continues with what we saw in the previous section: RemulakServlet now has the CustomerValue object, and the JSP does its work, filling the screen with information for the user. However, the Transaction Context object needs more discussion.

Remulak Transaction Management: Roll Your Own

Transaction management is key to any software application today. In particular, it is vital for update activity when more than one set of updates is occurring, all part of a package of updates. This package of updates is called a unit of work in transaction terminology. How does transaction management work and how do we code for it? Here's one of the big drawbacks to not using a commercial container product that implements the EJB framework. If the application is using just native JDBC, the software developer is responsible for all transaction management activities.

Where to put the transaction logic is a problem. However, the beauty of the design strategy we are following (a controller for each use-case and an operation for each pathway) is that management of the unit of work must begin in the use-case control class. We can't put the begin/ commit logic in the DAO classes because many DAO classes may be involved in one unit of work. We also can't put the begin/commit logic in the entity bean classes because they are in the same boat as the DAO classes: They represent just one musician playing in the orchestra of the use-case pathway. So figuring out where to manage the transaction seems logical, but the architecture of it isn't.

We need a class that can load JDBC drivers, manage connection pools, and open database connections. We need a class that can begin a transaction as well as commit it. This is what the TransactionContext class will do for us. To be able to roll back a transaction, all SQL activity must happen on the same connection. The connection's life span is usually parallel to that of the unit of work. So the TransactionContext object must be passed into the entity bean classes and then into the DAO classes. This same requirement applies to all entity beans involved in a unit of work.

Let's examine the TransactionContext class:

import java.io.*;
import java.sql.*;
import java.text.*;
import java.util.*;
import javax.sql.*;
public class TransactionContext implements Serializable {
  private Connection dbConnection = null;
  private DataSource datasource = null;
  private CustomerValue custVal = null;
  private boolean unitOfWork = false;
  
  public TransactionContext() {
    try {
      // This is where we load the driver
      Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
     }
     catch (ClassNotFoundException e) {
      System.out.println("Unable to load Driver Class");
      throw new TranSysException(e.getMessage());
     } 
} 

Note first that the constructor is where the driver is loaded for our database. Again, wanting to stick with the semantics of what is happening versus additional abstractions, I'll say simply that it is done in a very manual way. A better solution would be to use JNDI or perhaps a .properties file to look up the driver name instead of hard-coding it in the constructor.

public Connection getDBConnection() {
    log("TransactionContext: in get connection");
    if (dbConnection == null)
      throw new TranSysException
               ("no database connection established
               yet");
      return dbConnection;
}

public void beginTran(boolean supportTran)
    throws TranBeginException, TranSysException {

  unitOfWork = supportTran;
  getConnection();
  try {
     if (supportTran) {
      dbConnection.setAutoCommit(false);
     }
     else {
      dbConnection.setAutoCommit(true);
     }
}
catch (SQLException e) {
   throw new TranBeginException(e.getMessage());
   }
}

The beginTran() operation receives a boolean input parameter. This boolean tells the operation if a unit of work is necessary, meaning that updates are going to occur. The next element of beginTran() is to call its getConnection() operation:

public void getConnection() throws TranSysException {
    try {
       dbConnection = DriverManager.getConnection
          ("jdbc:odbc:remulak-bea","", "");
    } catch (SQLException se) {
       throw new TranSysException("SQLExcpetion while
       getting" +
                         " DB Connection : \n" + se);
    }
}

A getConnection() call to the DriverManager object created in the constructor establishes a connection with the driver loaded previously, by use of the data source name necessary to talk to the database. Again, it would be an added benefit to load this driver with JNDI.

Back to beginTran(), if a unit of work is necessary, false is passed to the setAutoCommit() method; otherwise each individual update request would be committed as it occurred. If this is a read-only type of request, true (the default) is passed to setAutoCommit().

public void commitTran()
   throws TranCommitException, TranSysException,
           TranRollBackException {

   if (unitOfWork) {
    try {
       dbConnection.commit();
    }
    catch (SQLException e) {
       rollBackTran();
       throw new TranCommitException("Can't commit
       transaction");
       }
    }
    closeConnection();
}

When committing work, TransactionContext knows from the initial call to beginTran() whether a unit of work is under way; if so, a commit is issued on the connection and the connection is closed. If no unit of work is under way, the connection is simply closed.

The remaining operations in the TransactionContext class follow. Some of the operations, such as closeResultSet() and close Statement(), will be used by the DAO classes that will be reviewed later in this chapter.

public boolean rollBackTran()
     throws TranRollBackException, TranSysException {
   boolean returnValue = false;
   try {
     dbConnection.rollback();
     closeConnection();
     returnValue = true;
   }
   catch (SQLException e) {
     throw new TranRollBackException("Can't roll back
     transaction");
   }
   return returnValue;
}

public void closeResultSet(ResultSet result)
   throws TranSysException {
   try {
      if (result != null) {
        result.close();
      }
   }
   catch (SQLException se) {
     throw new TranSysException("SQL Exception while
     closing " + "Result Set : \n" + se);
   }
}
public void closeStatement(Statement stmt)
   throws TranSysException {
   try {
      if (stmt != null) {
        stmt.close();
      }
   } catch (SQLException se) {
      throw new TranSysException("SQL Exception while
      closing " + "Statement : \n" + se);
   }
}
public void closeConnection() throws TranSysException {
   try {
      if (dbConnection != null && !dbConnection.isClosed()) {
        dbConnection.close();
        log("TransactionContext: closing connection");
      }
   } catch (SQLException se) {
      throw new TranSysException("SQLException while closing"
     + " DB Connection : \n" + se);
   }
  }
}

The TransactionContext class allows us to encapsulate all the transaction management logic in one place. It also makes it convenient because each controller pathway operation can use the same syntax. It is true that read-only operations don't begin and commit transactions, but we have abstracted out the underlying functionality by simply indicating the intent with the beginTran() call at the beginning of the interaction.

Remulak Controllers and Subsequent Operations

Let's continue with the UCMaintainRltnshp control class by looking at the rltnAddCustomer() operation. For add operations, a primary key must be assigned. The relevant code follows, but it simply uses the Random class out of the java.util package. You can build more industrial-strength generators, but this one will serve our purpose.

public void rltnAddCustomer(CustomerValue custVal) {
     // Seed random generator
     seedRandomGenerator();

     // Generate a random integer as the key field
     custVal.setCustomerId(generateRandomKey());

     CustomerBean customerHome = new CustomerBean();

     try {
        transactionContext.beginTran(true);
        customerHome.customerInsert(transactionContext,
        custVal);
        transactionContext.commitTran();
     } catch (RemulakFinderException fe) {
     } catch (TranCommitException ce) {
       try {
        transactionContext.rollBackTran();
       }
       catch (TranRollBackException ree) {
       }
     } catch (TranSysException se) {
        try {
        transactionContext.rollBackTran();
       }
       catch (TranRollBackException ree) {
       }
     } catch (TranBeginException be) {
     } catch (TranRollBackException re) {
     } catch (Exception e) {
        try {
        transactionContext.rollBackTran();
       }
       catch (TranRollBackException ree) {
       }
     } finally {
       customerHome = null;
     }
}
private static void seedRandomGenerator() {
  generator = new Random(System.currentTimeMillis());
}
private Integer generateRandomKey() {
  Integer myInt = new Integer(generator.nextInt());
  return myInt;
}

The fact that beginTran() is now passed a value of true indicates that there is a unit-of-work requirement for this transaction. In the try/catch blocks we see how rollBackTran() is called within TransactionContext if there are problems along the way.

The remaining operations of the UCMaintainRltnshp class follow. In Chapter 12 we'll see that this class also covers the pathways of adding roles and addresses.

public void rltnUpdateCustomer(CustomerValue custVal) {

    CustomerBean customerHome = new CustomerBean();

    try {
       transactionContext.beginTran(true);
       customerHome.customerUpdate(transactionContext,
       custVal);
       transactionContext.commitTran();
    } catch (RemulakFinderException fe) {
    } catch (TranCommitException ce) {
      try {
       transactionContext.rollBackTran();
      }
       catch (TranRollBackException ree) {
       }
      } catch (TranSysException se) {
        try {
        transactionContext.rollBackTran();
      }
      catch (TranRollBackException ree) {
      }
    } catch (TranBeginException be) {
    } catch (TranRollBackException re) {
    } catch (Exception e) {
       try {
       transactionContext.rollBackTran();
      }
      catch (TranRollBackException ree) {
      }
    } finally {
      customerHome = null;
    }
}
public void rltnDeleteCustomer(Integer customerId) {
    CustomerBean customerHome = new CustomerBean();
    try {
       transactionContext.beginTran(true);
       customerHome.customerDelete(transactionContext,
       customerId);
       transactionContext.commitTran();
    } catch (RemulakFinderException fe) {
    } catch (TranCommitException ce) {
       try {
         transactionContext.rollBackTran();
       }
       catch (TranRollBackException ree) {
       }
       } catch (TranSysException se) {
          try {
          transactionContext.rollBackTran();
       }
       catch (TranRollBackException ree) {
       }
    } catch (TranBeginException be) {
    } catch (TranRollBackException re) {
    } catch (Exception e) {
      try {
      transactionContext.rollBackTran();
     }
     catch (TranRollBackException ree) {
     }
    } finally {
     customerHome = null;
    }
}

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020