• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Multiple @AroundInvokes

 
Ranch Hand
Posts: 30
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hey Ranchers,
I've just been testing some error cases for EJB trying out the different rules to see how it breaks, when and if it breaks. Today I tested the condition in 12.3 of the core spec to do with the number of @AroundInvoke methods in an interceptor. The spec says:

AroundInvoke methods may be defined on superclasses of the bean class or interceptor classes.
However, only one AroundInvoke method may be present on a given class.



I decided to see what happens if I define two around invoke methods in an interceptor class to see if I get an Exception, or whether the bean just doesn't deploy at all. What I found is that no errors occur, and at least one @AroundInvoke method in that interceptor is called, but the one that runs seems to be indeterminate.

Im using Glassfish 2.1 container and the interceptor class is given below (im declaring this interceptor to be called from a stateless bean not shown below):



Has anyone tried anything similar in a different container perhaps? The spec isn't clear on what happens if you define two, it just says you shouldn't do it.
 
Sheriff
Posts: 14691
16
Eclipse IDE VI Editor Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
This thread may help.
 
Could you hold this puppy for a sec? I need to adjust this tiny ad:
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic