I want to use in maven project an implementation of CDI+JSF+HIBERNATE+PRIMEFACES. my pom.xml is like this:
<dependencies>
<!-- PROJECT LOMBOK -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.16.6</version>
<scope>provided</scope>
</dependency>
<!-- MYSQL -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.9</version>
</dependency>
<!-- HIBERNATE -->
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>3.6.3.Final</version>
</dependency>
<!-- CDI -->
<dependency>
<groupId>javax.enterprise</groupId>
<artifactId>cdi-api</artifactId>
<version>1.2</version>
</dependency>
<!-- SLF4j -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.7.12</version>
</dependency>
<!-- PRIMEFACES -->
<dependency>
<groupId>org.primefaces</groupId>
<artifactId>primefaces</artifactId>
<version>5.2</version>
</dependency>
</dependencies>
The structure of my project is like this, I use a generic interface when I implement in different Class. One interface that I implement in 3 classes IGenericDAO I implement it in UserDao + PersonDao + RoleDao like this
public interface IGenericDAO<T> {
void save(T object);
void update(T object);
T getObjectById(int id);
List<T> getAll(); }
the implementation is
public class UserDAOImpl implements IGenericDAO<User> {
@Override
public void save(User user) {
Session session = HibernateUtil.getSessionFactory().openSession();
Transaction transaction = null;
try {
transaction = session.beginTransaction();
session.save(user);
transaction.commit();
} catch (Exception e) {
if (transaction != null)
transaction.rollback();
throw e;
} finally {
session.close();
HibernateUtil.getSessionFactory().close();
}
}
@Override
public void update(User user) {
Session session = HibernateUtil.getSessionFactory().openSession();
Transaction transaction = null;
try {
transaction = session.beginTransaction();
session.update(user);
transaction.commit();
} catch (Exception e) {
if (transaction != null)
transaction.rollback();
throw e;
} finally {
session.close();
HibernateUtil.getSessionFactory().close();
}
}
@Override
public User getObjectById(int id) {
Session session = HibernateUtil.getSessionFactory().openSession();
try {
return (User) session.createCriteria(User.class).add(Restrictions.eq("id", id)).list().get(0);
} catch (Exception e) {
throw e;
} finally {
session.close();
HibernateUtil.getSessionFactory().close();
}
}
@SuppressWarnings("unchecked")
@Override
public List<User> getAll() {
Session session = HibernateUtil.getSessionFactory().openSession();
try {
return session.createCriteria(User.class).list();
} catch (Exception e) {
throw e;
} finally {
session.close();
HibernateUtil.getSessionFactory().close();
}
}}
like this I code the Service to, I use a Generic Interface and I implement the code in 3 classes separetaded like this:
public interface IGenericService<T> {
void save(T object);
void update(T object);
T getObjectById(int id);
List<T> getAll(); }
the implementation
@RequestScoped
public class UserServiceImpl implements IGenericService<User> {
@Setter
@Inject
private IGenericDAO<User> dao;
@Override
public void save(User user) {
dao.save(user);
}
@Override
public void update(User user) {
dao.update(user);
}
@Override
public User getObjectById(int id) {
return dao.getObjectById(id);
}
@Override
public List<User> getAll() {
return dao.getAll();
}}
And finally, the ManagedBean is like this:
@Named(value = "authentication")
@RequestScoped public class AuthenticationBean implements Serializable {
private static final long serialVersionUID = 2288439665206779666L;
@Getter
@Setter
private String message;
@Setter
@Inject
private IGenericService<User> userService;
@PostConstruct
public void init() {
message = userService.getObjectById(1).getLastname();
}}
Everytime I run the glassfish server i have this error : Exception 0 : org.jboss.weld.exceptions.DeploymentException: WELD-001408: Unsatisfied dependencies for type IGenericDAO with qualifiers @Default at injection point [BackedAnnotatedField] @Inject private ma.salaried.service.impl.PaymentServiceImpl.dao