Most voted "aspect-oriented" questions
In computer science, aspect-oriented programming or POA, it is a computer programming paradigm that allows software developers to separate and organize code according to its importance to the application.
Learn more…7 questions
Sort by count of
-
25
votes2
answers8421
viewsWhat is Cross-Cutting and what is its relationship to Aspect Oriented Programming (AOP)?
What is Cross-Cutting and what is its relation to Aspect Oriented Programming (AOP)? And in a DDD architecture what is its function?
-
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
answer789
viewsWhich aspect-oriented programming frameworks exist for . NET?
Researching about aspect-oriented programming, found a framework that implements this paradigm, the Postsharp. But this tool is paid for some Ports. Does anyone know any more?…
-
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…
-
2
votes2
answers224
viewsSetup pointcut AOP Spring
I have the below pointcut setting on Spring 3 <aop:config> <aop:pointcut id="baseDaoPointcut" expression="execution(* br.com.infraestrutura.domain.BaseDao+.*(..))" /> <aop:pointcut…
-
1
votes0
answers143
viewsError while trying to compile aspect in Intellij
This is my first question on this site, I will try to be succinct. I’m working with aspect-oriented programming, already working using Eclipse. However, while trying to do the same using the…
-
1
votes1
answer85
viewsHow to get the value of a specific parameter in a jointpoint in an "Around" processing?
I have the following method: @RequestMapping(path = "/{tenant}/import", method = RequestMethod.POST, consumes = "application/json", produces = "text/plain; charset=UTF-8") @Transactional public…