Java Spring Framework Question:

Download Job Interview Questions and Answers PDF

What is an Aspect?

Spring Framework Interview Question
Spring Framework Interview Question

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?