In this section we will develop the objects of business logic tier. Business logic tier referrers to the mid tier of 3-tier web application architecture.
Business Objects
Business logic tier communicates both with user interface tier and the database tier. In the business logic tier all the logic are encapsulated. The business objects and business services in the application resides in the Business logic tier. The business objects contains the data and logic associated with the data. In our application application there is only one business object the User.
Here is the code of User.java business object:
package net.roseindia.dao.hibernate;
|
Since we are using Hibernate for persistence, the User business object provides getter and setter methods for all fields.
Business Services
Business Services contains the code to interact with the data tier. In this application we have developed a formal service layer, client can use these services interface. There is only one service in this application the ServiceFinder. The ServiceFinder service is used to get the Spring managed beans from WebApplicationContext.
In the next section we will learn about Integration tier of our application. Integration tier is also known as data access tier.
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: Business Objects of Business Logic tier
Post your Comment