Java Spring Framework Question:
Download Questions PDF

What is an Aspect?

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 Interview Questions And Answers PDF

Previous QuestionNext Question
What are different types of Autowire types?What is a Jointpoint?