I'm trying to profile my application with JDK bundled JMC flight recorder
However, when I apply below JVM args to enable recorder:
-XX:+UnlockCommercialFeatures
-XX:+FlightRecorder
All of my aop advice seems not work, looks like the agent does not take effect:
-javaagent:.......\aspectjweaver-1.7.3.jar
I'm wondering if -XX:+FlightRecorder
has its own class instrument/enhancement, which has conflict with others like aspectj weaver?