I want to write a custom BeanResolver for the Spring Expression Language to resolve EJBs in expressions (for example "@MyBean.property=='example-value'"). How can I retrieve a bean by its name without doing a JNDI-Lookup? Do I have to write a plugin for the application server of my choice (which would be glassfish)?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
EE injection and JNDI lookup are the entry point to all EJBs; there is no other standard way to obtain an instance of an EJB. If you're using EJB 3.1, the bindings in
This is effectively locating an EJB by name. (It does require JNDI, but it's not clear from your description why JNDI itself would be problematic, though I do understand why bindings are a problem.) If you know that the EJB only supports one interface, you can omit the |
|||||
|
mappedNamefor example), I can in fact define a vendor specific mapper function that determines the real bean name. But this approach won't work if the developers do assign custom JNDI names for the bean that differ from the actual bean name. – tsh Nov 10 '12 at 6:27