I've made a simple application to test this problem i'm having in small scale. I've got an ejb:
@Local
public interface PersonaDAO {
public void sayHello(Persona persona);
}
@Stateless
public class PersonaDAOImpl implements PersonaDAO {
private PersonaDAOImpl() {
}
public void sayHello(String nombre) {
System.out.println("HELLO " + nombre + " welcome to EJB 3!");
}
}
And i got a bean managing a jsf:
@ManagedBean(name="loginBean" )
@ViewScoped
public class LoginBean extends PageBean {
private String nombre;
@EJB
private PersonaDAO dao;
public String confirmar()
{
String outcome = null;
Persona persona = new Persona();
persona.setNombre(nombre);
dao.sayHello(persona);
return outcome;
}
.....
}
I'm getting this deployment error:
DEPLOYMENTS IN ERROR: Deployment "vfs:///home/shapacko/ambiente/jboss-6.0.0.Final/server/default/deploy/Prueba.war" is in error due to the following reason(s): java.lang.RuntimeException: Could not resolve @EJB reference: [EJB Reference: beanInterface 'com.application.business.ServicioPersonasImpl', beanName 'null', mappedName 'null', lookupName 'null', owning unit 'AbstractVFSDeploymentContext@8203928{vfs:///home/shapacko/ambiente/jboss-6.0.0.Final/server/default/deploy/Prueba.war}'] for environment entry: env/com.application.presentation.seguridad.LoginBean/sp in unit AbstractVFSDeploymentContext@8203928{vfs:///home/shapacko/ambiente/jboss-6.0.0.Final/server/default/deploy/Prueba.war}
And then if i run the app i get a:
javax.servlet.ServletException: javax.ejb.EJBException: java.lang.RuntimeException: org.jboss.ejb3.instantiator.spi.BeanInstantiationException: Could not create new instance with no arguments of: class com.application.persistence.PersonaDAOImpl javax.faces.webapp.FacesServlet.service(FacesServlet.java:325)
I don't understand what's the problem. Is this injection possible? Or do i need to do a jndi lookup instead of injecting the ejb?