About 51 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. Spring AOP not working for method call inside another method

    Nov 26, 2012 · Spring AOP framework is "proxy" based, the documentation at Understanding AOP Proxies explains it very well. When Spring constructs a bean that is configured with an aspect (like …

  3. AOP Triggering Twice with @Autowired or Constructor Injection in …

    Dec 21, 2024 · On top of that, your Spring configuration explicitly instantiates the native aspect as a Spring @Bean, probably to somehow trick Spring into supporting auto-wiring. By doing these both …

  4. aop - What is aspect-oriented programming described in layman’s …

    Duplicate: What is aspect-oriented programming? Every time I here a podcast or read a blog entry about it, even here, they make it sound like string theory or something. Is the best way to descr...

  5. 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 an object-oriented one. It is not "vs", it is "aspect-oriented …

  6. Is using Spring AOP for logging a good idea? - Stack Overflow

    Jul 20, 2011 · I used Spring AOP for implementing logging so I share my observations: Performance impact is not sufficient, it is less than impact of logging itself Having aspects configured in Spring …

  7. 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 …

  8. What is the most common use for AOP in spring project

    After reviewing the AOP pattern, I'm overwhelmed with the ways of how and what to use it for in my spring project. I'd like to use it as audit log system of all the financial business logic. It j...

  9. 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 …

  10. 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...