I would like to know the difference between creating an DAO Object with constructor like :
myDaoObject = new MyDaoObject();
and creating it by EJB injection :
@EJB
MyDaoObject myDaoObject;
Is there a difference in the running and/or performance ? thanks.