What is the differnce between 2-tier architecture and 3-
tier architecture in java?
Answers were Sorted based on User's Feedback
Answer / kartheeswari
2-tier respresents client and server, in which server does
the storage of data as well as the transaction. So the
burden is more to the server ans the response may slow.
3-tier represents client, middle tier and server, where
server does the storage, middle tier does the transaction.
So burden for the server is less and the response may
faster than 2-tier
| Is This Answer Correct ? | 33 Yes | 2 No |
Answer / sunil kumar- vizag
2-tier applications access database services or transaction
services directly from the client. here the application
logic resides on the client, making clients large and complex.
3-tier client-server applications employs an intermediary or
middle tier, application server which operates between
client applications and the back end databases.
There are two fundamental motivations for using a three-tier
architecture over a two-tier
model:
* Improved scalability, availability, and performance
* Improved flexibility and extensibility of business systems
| Is This Answer Correct ? | 30 Yes | 1 No |
Answer / nazni
2 tier where client and server involved, 3 tier which is
MVC framework
| Is This Answer Correct ? | 11 Yes | 35 No |
What are pull and push mvc architecture and which architecture does struts2 follow?
Describe the basic steps used to create a tiles application?
In how many ways duplicate form submission can occurs?
What validate() and reset() method does ?
Explain struts.devmode?
What is struts2 framework?
How is the mvc design pattern used in struts framework?
Does apache struts run on windows?
what r the disadvantages of MVC-2 Architecture?
How the flow of various requests happens in struts application?
What are the steps of struts installation?
What is the purpose of @key annotation annotation?