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
What is the meaning of immutable regarding string?
What is meant by anonymous class?
Can singleton class be inherited in java?
What are the drawbacks for singleton class?
What is module with example?
What is the benefit of inner classes in java?
What design pattern you have used in your project? I answered Factory pattern, how it is implemented? What are its advantage? Do know about Abstract Factory?
What do you understand by soft reference?
When should you use arraylist and when should you use linkedlist?
What is data type in java?
Why local variables are stored in stack?
Is alive method in java?
Can a method inside a interface be declared as final?
How can we create a synchronized collection from given collection?
Can we inherit a class with private constructor?