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
Can a static member function access member variable of an object?
What do you understand by the term polymorphism?
What is += mean in java?
Why we do exception handling in java and how many types of exceptions are there?
How to reverse a string in java?
What class allows you to read objects directly from a stream?
Can java inner class be static?
Where is java located?
what is session in java?
What is a dynamic array in java?
What does || mean in code?
How do I get 64 bit java?
How do I remove a character from a string in java?
How many arguments can be passed to main ()?
What is difference between add() and addelement() in vector?