How to specify the EJB bean name in the JNDI tree in JEE7
问题 I'm not sure if this is a generic JEE6 question or if it is a Wildfly 10/JBoss7 EAP implementation specific question. I'm trying to specify/override the default beanName used in my EJB JNDI mapping to something more meaningful to me. For example: LoginManagerBean: @Stateless public class LoginManagerBean extends BaseManagerBean implements LoginManager { .... } LoginManager: @Local public interface LoginManager{ .... } In this context, WF10 will automatically create a JNDI mapping for this EJB