Am using struts2 , EJB 3.0 ... My requirement is to call the EJB layer from struts2 action class . I hope there are two ways in achieving this :
1.Using @EJB annotation in Action class
2.Using JNDI look up
I tried both ,
but the problem with JNDI lookup is , eventhough am using correct naming , am getting NameNotFoundException . So the ultimately , my team moved to other method which is using @EJB annotation .
But when am using @EJB annotation am getting null out of it , I think its not injected :
am getting the NullPointerException
code :
@EJB(mappedName="BeanLocal/local")
BeanLocal bean ;
Can any one suggest me what i have to do further ... Also if there is anylink in SOF , please do refer me as i found nothing related to this