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
Explain jdk, jre and jvm?
Write a method that will remove given character from the string?
How list contains works in java?
Can we convert stringbuilder to string in java?
Can a constructor be private and how are this() and super() method used with constructor?
Is java se open source?
What is difference between adapter class and listener?
What is difference between char array and string?
Can we use a switch statement with strings?
How can you write a loop indefinitely in java programming?
Is empty in java?
What is the lifetime and scope of a variable?
What does function identity () do?
What is the use of static methods?
What environment variables are required to be set on a machine in order to run Java programs?