What is a three-tier architecture?

A three-tier architecture is any system which enforces a general separation between the following three parts:
1.    Client Tier or user interface
2.    Middle Tier or business logic
3.    Data Storage Tier
Applied to web applications and distributed programming, the three logical tiers usually correspond to the physical separation between three types of devices or hosts:
1.    Browser or GUI Application
2.    Web Server or Application Server
3.    Database Server (often an RDBMS or Relational Database)
However, inside of the application server, there is a further division of program code into three logical tiers. This is kind of fractal: the part (app server object design) resembles the whole (physical system architecture). In a classic JSP/Servlet system, these objects are usually implemented as:
1.    JSPs or Servlets responsible for creating HTML or WML user interface pages
2.    Servlets or JavaBeans responsible for business logic
3.    Servlets, JavaBeans, or Java classes responsible for data access. These objects usually use JDBC to query the database.
In an EJB system, the three logical tiers are usually implemented somewhat differently:
1.    JSPs, Servlets, or Java client applications responsible for user interface
2.    Session Beans or Entity Beans whose methods implement business logic and business rules
3.    Entity Beans whose fields represent data; these fields are “persisted” (stored and retrieved) either by the EJB server (for container-managed persistence) or by the Entity Beans themselves (for bean-managed persistence)
As you can see, the precise definition of “tiers” can vary widely depending on the particular needs and choices of an application designer. However, they all maintain the general division of client-logic-storage.
If the architecture contains more than three logical tiers — for instance, multiple data feeds, multiple transactional data sources, multiple client applications — then it is typically called an “N-tier” or “Distributed” architecture.


You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.

AddThis Social Bookmark Button

One Response to “What is a three-tier architecture?”

  1. A Typical J2ee application contains 3 tiers such as presentation tier , business tier,Information/Database tier.

    The presentation tier mainly concerns with presentation logic generally implemented by servlets and jsps.

    Business tier contains business components such as EJBs contains business logic.

    Databse tier contains persistent data generally stored in a RDBMS such as Oracle,DB2 and so on.

Leave a Reply