J2EE enterprise architecture with staged updates |
|
This architecture shows two existing relational databases being used by a J2EE application server. One database is being accessed using JDO and the other by JDBC. A third database is being used in the middle tier as an EJB accelerator. The database used as an EJB accelerator holds data that is a copy of data from one or more of the existing relational databases. All updates from the EJB components are made directly to this database. At some later time, say at the end of a business day, the updated data is written to the existing databases in the EIS tier. This is referred to as having "staged updates" because any updates by EJB components are staged first to the database used by the EJB accelerator and then written at a later time to the underlying relational database. This is in contrast to "in-line updates" (new window). An example of staging data would to "publish" a catalog to the middle-tier database based on multiple data sources. The EJB components then could use this "published" data directly without requiring direct Internet access to the databases in the EIS tier. This architecture might very well provide much better performance than the "in-line updates" (new window). It does not include the activity with the EIS Tier within transaction boundaries. Object databases make for an excellent middle-tier database for use with EJB components. This is because the object model used by EJB components is the same model used by object databases. For more information, see:
Multiple components use JDO to access the relational database. JDO allows the mapping between Java objects and tables to be defined in one place for use by the multiple components. See JDO data conversion (new window). The JDBC interface is used by the Web Server to access simple data. See when to use JDBC with Java application servers (new window). Also see:
Read more free articles on this siteThere are nearly 400 pages of articles on this site with over 20 pages on application servers. Search this site for more articles
Custom Search
Browse this site for more articlesClick on the topics below to browse the articles on this site.The arrows show the path to the current article: J2EE enterprise architecture with staged updates.
Related recent articles from Google News
More related news: "application server" - Google News
Copyright © 2000-2009 Barry & Associates,
Inc. All Rights Reserved.
|
| |||||||||||||||||||||||||||||||
|