Hello,
My question is: Do the use of the HotSwapping allows the application to take 
into account changes in the code of the interceptor without having to click 
once on the "Run" under eclipse.
For example, If we have this code:

  | for(int i=0;i<100000;i++)
  | {
  |    try
  |    {
  |       AdviceBinding ab = new AdviceBinding("execution(public *  
BuyerMAg->imprimer(..))",null);
  |       ab.addInterceptor(InterceptorInterdImp.class);
  |       AspectManager.instance().addBinding(ab);
  |             }catch(Exception e){}
  | 
  | affichage();
  | 
  | }

And before the end of the loop "for" I change the first interceptor by a new 
"InterceptorInderImp2". Does the application will be able to take account, or I 
have to "Run" once the application.
Thank you.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4184604#4184604

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4184604
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to