Most voted "aop" questions
AOP is a computer programming paradigm that allows software developers to separate and organize the code according to its importance to the application (Separation of Concerns). The entire program written in the object-oriented paradigm has code that is unrelated to the implementation of object behavior. If your question is not about "AOP" even if your application has "AOP" do not use this tag.
Learn more…4 questions
Sort by count of
-
5
votes1
answer248
viewsjava.lang.Illegalstateexception when declaring aspect with Spring
I’m trying to state this aspect: @Aspect @Component public class UpperCaseAdvice { @Before("@target(annotations.Model)") public void toUpperCase(JoinPoint joinPoint){ //faz alguma coisa } } I am…
-
2
votes1
answer53
viewsProgress of the aspect-oriented paradigm
Today little is said about POA, because it is no longer commented on the networks? What caused its "disappearance", if not obsolete, where it is being applied. The projector Roo spring.io uses…
-
1
votes0
answers84
viewsException interception for logging, using AOP with CDI in Java EE 7
Below I have part of a class, of which I want to eliminate repetitive logging code through AOP. /** * Javadoc omitido */ public abstract class JpaDao<T extends LongIdentifiable> implements…
-
0
votes1
answer55
viewsFailure to build Spring MVC application when configuring AOP bean
I’m trying to configure AOP in the spring.xml of my Spring MVC application, but I can’t build. I consulted the documentation, but following it did not succeed. The code is as follows:: <beans…