Top "Aop" questions

AOP stands for Aspect-Oriented Programming.

Aspect weaving at runtime

I'm looking for a Java solution that would allow me to use AOP to weave new code on top of …

java runtime aop aspectj load-time-weaving
Calling @Transactional method from non-transactional method in Spring 4.3

I have the following code: @Service public class ItemService { ... public void addItems(@Nonnull DocumentDTO dto) throws Exception { // some code that …

java spring sonarqube aop sonarlint
Logging using AOP in .NET Core 2.1

I want to implement AOP for the logging in my .NET Core 2.1 solution. I've never used it before and I've …

c# logging asp.net-core aop asp.net-core-2.1
What is the difference between @Before @After and @AfterExecution in Spring aop

I have started learning Spring AOP. Can I have a brief description on @Before @After and @AfterExecution. Among those three …

java spring aop spring-aop
How to configure JVM Argument -javaagent with two jars

To use the spring AOP, I have to configure -javaagent:C:/spring-agent-2.5.6.jar as JVM argument. But there is a …

java aop javaagents
Aspect Oriented Programing (AOP) solutions for C# (.Net) and their features

I would like to ask for 3 information here: There is no integrated solution for Aspect Oriented Programing (AOP) in C# (.…

c# .net aop
Intercept the call to an async method using DynamicProxy

Below is the code from the Intercept method on a custom type that implements IInterceptor of the Castle Dynamic Proxy …

c# reflection aop async-await castle-dynamicproxy
Autowired dependency not injected in Aspect in Spring MVC

I am not able to @Autowire the Service Layer Instance in Aspect. In Aspect the reference to the @Autowired bean …

spring-mvc aop aspectj spring-aop
Configurable vs Component with Spring and AspectJ

When using AspectJ, why use @Component over @Configurable. I've got Spring and AspectJ setup for @Transactional support, aspects on self-invocation, …

spring annotations aop spring-aop configurable
java.lang.IllegalArgumentException: error at ::0 can't find referenced pointcut

I'm really very new to Spring AOP. In my application, I had configured HiddenHttpMethodFilter that converts method parameters into HTTP …

spring aop spring-aop multipart pointcut