An Enterprise Computing Scenario

The previous sections have been rapid-fire introductions to the Java Enterprise APIs that are part of the J2EE framework as well as a set of key de facto standard tools used commonly in the Java Enterprise space. Don’t worry if you didn’t understand all the information presented there: the rest of the chapters in the following two parts of the book cover the APIs in more detail. The important message you should take from this chapter is that the Java Enterprise APIs are building blocks that work together to enable you to write distributed Java applications for enterprise computing. The computing infrastructure of every enterprise is unique, and the Java Enterprise APIs can be combined in any number of ways to meet the specific needs and goals of a particular enterprise.

Figure 1-1 shows a schematic for a hypothetical enterprise. It illustrates some of the many possible interconnections among distributed services and shows some of the Java Enterprise APIs that facilitate those interconnections. The figure is followed by example scenarios that demonstrate how the Java Enterprise APIs might be used to solve typical enterprise computing problems. You may find it useful to refer to Figure 1-1 while reading through the scenarios, but note that the figure doesn’t illustrate the specific scenarios presented here.

The distributed computing architecture of a hypothetical enterprise

Figure 1-1. The distributed computing architecture of a hypothetical enterprise

Enabling E-Commerce for a Mail-Order Enterprise

CornCo Inc. runs a successful catalog-based mail-order business selling fresh flavored popcorn. They want to expand into the exciting world of online sales. Here’s how they might do it:[3]

  1. A customer visits the company’s web site, http://www.cornco.com, and uses a web browser to interact with the company’s web server. This allows the customer to view the company’s products and make selections to purchase.

  2. Before accessing protected or personalized sections of the web site, the customer must log in (authenticate) to identify himself to the system. Once logged in, he is authorized to use customer-related functions of the site and view his own data (and no one else’s).

  3. The web server uses a shopping cart servlet to keep track of the products the customer has chosen to buy. The HTTP protocol is itself stateless, but servlets can persist between client requests, so this shopping cart servlet can remember the customer’s selections even while the customer continues to browse the web site.

  4. When the customer is done browsing and is ready to purchase the selected products, the web server invokes a different checkout servlet. This servlet performs a number of important tasks, using several Java Enterprise APIs.

  5. The checkout servlet uses JDBC to retrieve the list of products to be purchased (stored in a database by the shopping cart servlet).

  6. Next, the servlet queries the customer for a shipping address, a billing address, and other required information and then uses JDBC again to store this information in a customer database. This database can be used, for example, by the CornCo marketing department for direct mail purposes.

  7. The servlet then sends the customer’s billing address and total purchase price to the billing server. This server is a legacy application, specific to CornCo, that has a nonstandard interface. Fortunately, however, the billing server exports itself as a CORBA object, so the servlet can treat the entire server as a CORBA remote object and invoke the necessary methods on it.

  8. In order to ensure the very freshest product, CornCo maintains warehouses throughout the world. CornCo is a growing company, so the list of warehouses is frequently updated. The checkout servlet uses JNDI to contact a directory server and then uses the directory server to find a warehouse that is close to the customer and has the customer’s requested products in stock.

  9. Having located a warehouse that can fulfill the customer’s order, the checkout servlet uses JMS to contact the company’s enterprise messaging service. It uses this service to send the customer’s order to the selected warehouse in the form of a message. This message is delivered to and queued up on the local computer at the warehouse.

Updating CornCo with Enterprise JavaBeans

You may have noticed a flaw in the previous scenario. The checkout servlet sends billing information to one server and then sends fulfillment information to another server. But it performs these two actions independently, without any attempt to maintain transactional integrity and make them behave atomically. In other words, if a network failure or server crash were to occur after the billing information had been sent, but before the fulfillment information had been sent, the customer might receive a bill for popcorn that was never shipped.

The designers of the e-commerce system described in the previous section were aware of this problem, but since distributed transactions are complex and CornCo does not own a transaction management server, they simply chose to ignore it. In practice, the number of customers who would have problems would be small, and it was easier for the original programmers to let the customer service department sort out any irregularities.

But now, CornCo has hired a new vice president of information systems. She’s tough as nails and likes all her i’s dotted and her t’s crossed. She won’t stand for this sloppy state of affairs. As her first official act as VP, she buys a high-end J2EE application server and gives her e-commerce team the job of revamping the online ordering system to use it. The modified design might work like this:

  • The customer interacts with the web server and the shopping cart servlet in the same way as before.

  • The checkout servlet is totally rewritten. Now it is merely a frontend for an Enterprise JavaBeans component that handles the interactions with the ordering and fulfillment servers and with the marketing database. The servlet uses JNDI to look up the remote enterprise bean and then uses RMI to invoke methods on the bean (recall that all enterprise beans are RMI remote objects).

  • The major functionality of the checkout servlet is moved to a new checkout bean. The bean stores customer data in the marketing database using JDBC, sends billing information to the billing server using CORBA, looks up a warehouse using JNDI, and sends shipping information to the warehouse using JMS. The bean doesn’t explicitly coordinate all these activities into a distributed transaction, however. Instead, when the bean is deployed within the EJB container provided with the J2EE server, the system administrator configures the EJB component so that the server automatically wraps a distributed transaction around all of its actions. That is, when the checkout() method of the bean is called, it always behaves as an atomic operation.

  • In order for this automatic distributed transaction management to work, another change is required in the conversion from checkout servlet to checkout bean. The checkout servlet managed all its own connections to other enterprise services, but enterprise beans don’t typically do this. Instead, they rely on their server for connection management. Thus, when the checkout bean wants to connect to the marketing database or the enterprise messaging system, for example, it asks the EJB server to establish that connection for it. The server doesn’t need to know what the bean does with the connection, but it does need to manage the connection if it is to perform transaction management on the connection.

Other Potential Directions

This hypothetical situation has hopefully highlighted some of the motivations for utilizing the enterprise APIs and tools we’ll discuss in detail in the rest of the book. There are countless other scenarios we could reference to motivate exploration of other parts of the enterprise domain, such as:

  1. CornCo expands to incorporate new partners whose services are accessible via SOAP services. The system now needs to include web service clients, making remote calls to these partner services.

  2. Consequently, CornCo partners ask for integration points in the CornCo system to allow them to directly integrate their business processes, as well as desktop tools, into the CornCo environment. Since these partners use a variety of enterprise development platforms for their infrastructure, the development team decides to develop a suite of its own SOAP-based web services that expose the necessary integration points to these partners in a platform-neutral way.

  3. Key CornCo clients have requested the ability to place and track orders from mobile devices, like mobile phones and personal digital assistants (PDAs), using simple email messages. To support these devices, inbound and outbound email capabilities need to be integrated into the system to allow these users to submit requests in the form of a formatted email and to receive email notifications of order status.



[3] This example is intended to illustrate only how the Java Enterprise APIs can be used together. We have ignored efficiency considerations, so the resulting design might not actually be practical for a large-scale e-commerce web site.

Get Java Enterprise in a Nutshell, Third Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.