Is it possible a injection the EJB Stateless in EJB Entity? (Jboss 4.2.1)
I have this code:
@Entity
@Table(name = "TCYT_MATRIX")
public class MatrixDomain implements Serializable {
@Transient
@EJB
private AreaGroupRepository areaGroupRepository;
...
}