About 15,700,000 results
Open links in new tab
  1. aop - What is aspect-oriented programming? - Stack Overflow

    Spring AOP (Aspect-oriented programming) framework is used to modularize cross-cutting concerns in aspects. Put it simple, it’s just an interceptor to intercept some processes, for example, when a …

  2. @Transactional on @PostConstruct method - Stack Overflow

    When a @Transactional method is called from the same Bean directly, through usual Java call, the Spring AOP/Proxy machinery is not involved and the method is not executed inside of Transaction.

  3. What is the best implementation for AOP in .Net? [closed]

    AOP is the next level of abstraction. In fact, it's the limitation of inheritance and composition that lead to AOP. Have you seen Entlib exception block? Aspect is a lot cleaner than invoking that damn block …

  4. java - What are the possible AOP use cases? - Stack Overflow

    I'd like to make a picture of what are the possible cases for effective involvement of AOP in application design. All I have met so far is: logging-related security checks transaction management tw...

  5. Aspect oriented programming (AOP) in Python - Stack Overflow

    2024 update 12 years later, Python has improved, and so my understanding on its dynamism. Upon re-reading this, I double down on the answer bellow: Aspect orientation is trivial to implement as a Proof …

  6. Aspect-oriented programming vs. object-oriented programming

    Why "vs"? It is not "vs". You can use Aspect Oriented programming in combination with functional programming, but also in combination with Object Oriented one. It is not "vs", it is "Aspect Oriented …

  7. What Aspect-Oriented Programming (AOP) libraries for .NET are still ...

    From the above list I gather that the only real options for doing AOP on .NET is PostSharp (even though it's a commercial product), Spring.NET, Microsoft's Policy Injection Application Block, or perhaps …

  8. java - Spring AOP vs AspectJ - Stack Overflow

    Spring-AOP Pros It is simpler to use than AspectJ, since you don't have to use LTW (load-time weaving) or the AspectJ compiler. It uses the Proxy pattern and the Decorator pattern Spring-AOP Cons This …

  9. aop - Java Aspect-Oriented Programming with Annotations - Stack …

    Jan 28, 2011 · Yes, AOP should be annotation-based in the world of Java, however you can't process aspect-related annotations like regular (metadata) annotations. To intercept a tagged method call …

  10. Spring AOP with AspectJ: Load time weaving - Stack Overflow

    Aug 24, 2016 · 9 Spring AOP is proxy based. Unless configured to do otherwise, Spring AOP performs run-time weaving. Weaving: linking aspects with other application types or objects to create an …