I'm trying to expose beans using @ManagedResource (Spring 3) annotations, but face a problem - I'd like to expose the same bean in several applications on the same container (several web apps). This causes conflicts, of course.
Is there a workaround for this issue?
Meanwhile, I use xml MBeanExporter with InterfaceBasedMBeanInfoAssembler interface mappings, which gives me more control.

Thanks