Java Spring Framework Question:

What is an Aspect?

Tweet Share WhatsApp

Answer:

An aspect is the cross-cutting functionality that you are implementing. It is the aspect of your application you are modularizing. An example of an aspect is logging. Logging is something that is required throughout an application. However, because applications tend to be broken down into layers based on functionality, reusing a logging module through inheritance does not make sense. However, you can create a logging aspect and apply it throughout your application using AOP.

Download Spring Framework PDF Read All 43 Spring Framework Questions
Previous QuestionNext Question
What are different types of Autowire types?What is a Jointpoint?