What is Three tier architecture. Can anyone explain with a
Ordinary web application Project? (JSP,Servlets,JAVA,DAO) ?
Answer Posted / aditya sharma
Three tire architecture as Module View Controller.
Tier 1: the client contains the presentation logic,
including simple control and user input validation. This
application is also known as a thin client.
[Jsp]
Tier 2: the middle tier is also known as the application
server, which provides the business processes logic and the
data access.
[Servlets, Java, DAO]
Tier 3: the data server provides the business data.
[Database]
| Is This Answer Correct ? | 19 Yes | 2 No |
Post New Answer View All Answers
List out five keywords related to exception handling ?
Can private members of a base class are inheritable justify?
What is hotjava?
What do you mean by jjs in java8?
What is the default access specifier for variables and methods of a class?
What happens if constructor is private?
How do you execute a thread in java?
How can you share data between two thread in Java?
Explain the significance of listiterator.
What do you mean by ternary operator in java?
What is an argument java?
What exactly is methodology?
What is identifier in java?
What is the difference amongst jvm spec, jvm implementation, jvm runtime ?
Can final class have constructor?