answersLogoWhite

0


Best Answer
The Benefits of Layered Application
  • Other applications will be able to reuse the functionality exposed by your layers.
  • You will be able to distribute your layers over multiple physical tiers. This can make a very good impact on your application by
    improving performance (sometimes), scalability and fault tolerance.
  • The maintenance of your application is easier because of the low coupling between layers.
  • Adding more functionality to your application is made easier.
  • Layers make your application more testable.
  • Building a well formed layers makes the orientation in your application more easier.
  • Having your application not layered means that you have to deal with all security threats in one place which is very difficult. Having your application distributed to layers makes it much easier for design and implement
  • Without a good deployment plan it is not trivial to distribute your layers over multiple physical tiers in distributed computing. You need to plan ahead your layers when you create a distributed application.
User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Explain the benefits of layered architecture?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

The benefits of layered network architecture?

k


What is layered architecture?

layered model architecture is tcp/ip model .you can reference this model as layered model architecture protocol.


What is layered architecture protocol?

layered model architecture is tcp/ip model .you can reference this model as layered model architecture protocol.


What is the difference between a purely layered architecture and microkernel architecture?

Micro kernel's have more fun. Where layered models tend to have drinking problems


With block diagram explain the architecture of DRAM?

explain DRAM architecture with block diagram?


What has the author David B Hanna written?

David B. Hanna has written: 'The layered city' -- subject(s): Architecture, Domestic, Domestic Architecture


Explain architecture of Distributed Database systems Also explain the reasons for building distributed database systems?

1 Explain architecture of Distributed Database systems? Also, explain the reasons for building distributed database systems?


Advantages layered architecture operating system?

The O.S has been divided into different layers and each layer has mentained some hierarchy.


What are the benefits of architecture degree ?

You will be in school for about 4-6 years.


What are the benefits of measures of central tendency Explain with an example?

"What are the benefits of measures of central tendency? Explain with an example


Explain the different types of Computer Architecture?

The computer architecture is concerned with how the CPU acts and uses the computer memory.


What are the main advantages and disadvantages of using a layered network architecture?

The following are the advantages of a layered architecture:Layered architecture increases flexibility, maintainability, and scalability. In a Layered architecture we separate the user interface from the business logic, and the business logic from the data access logic. Separation of concerns among these logical layers and components is easily achieved with the help of layered architecture.Multiple applications can reuse the components. For example if we want a windows user interface rather than a web browser interface, this can be done in an easy and fast way by just replacing the UI component. All the other components like business logic, data access and the database remains the same. Layered architecture allows to swap and reuse components at will.Layered architecture enables teams to work on different parts of the application parallely with minimal dependencies on other teams.Layered architecture enables develop loosely coupled systems.Different components of the application can be independently deployed, maintained, and updated, on different time schedules.Layered architecture also makes it possible to configure different levels of security to different components deployed on different boxes. sO Layered architecture, enables you to secure portions of the application behind the firewall and make other components accessible from the Internet.Layered architecture also helps you to test the components independently of each other.The following are the disadvantages of a layered architecture:There might be a negative impact on the performance as we have the extra overhead of passing through layers instead of calling a component directly.Development of user-intensive applications can sometime take longer if the layering prevents the use of user interface components that directly interact with the database.The use of layers helps to control and encapsulate the complexity of large applications, but adds complexity to simple applications.Changes to lower level interfaces tend to percolate to higher levels, especially if the relaxed layered approach is used.