Dynamic AOP Hot Deployment

WARNING - TOPIC NOT WRITTEN - TOPIC ID: 3484

This topic has not yet been written. The content below is from the topic description.
Hot Deployment Another thing to notice in the Driver.java source file is that the code is creating an AdviceBinding at runtime and applying it to the POJO class. AdviceBinding binding = new AdviceBinding("execution(POJO->new(..))", null); binding.addInterceptor(SimpleInterceptor.class); AspectManager.instance().addBinding(binding); You can also remove bindings at runtime as well through the AspectManager class. See javadocs for more detail.