org.appfuse.dao.hibernate.UserDaoHibernate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of appfuse-hibernate Show documentation
Show all versions of appfuse-hibernate Show documentation
AppFuse DAO backend implemented with Hibernate (http://hibernate.org).
package org.appfuse.dao.hibernate;
import org.appfuse.dao.UserDao;
import org.appfuse.model.User;
import org.springframework.core.annotation.AnnotationUtils;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.jdbc.core.simple.SimpleJdbcTemplate;
import org.springframework.orm.hibernate4.SessionFactoryUtils;
import org.springframework.security.core.userdetails.UserDetails;
import org.springframework.security.core.userdetails.UserDetailsService;
import org.springframework.security.core.userdetails.UsernameNotFoundException;
import org.springframework.stereotype.Repository;
import javax.persistence.Table;
import java.util.List;
import org.hibernate.Query;
import org.hibernate.SQLQuery;
import org.hibernate.Session;
import org.hibernate.criterion.Restrictions;
/**
* This class interacts with Hibernate session to save/delete and
* retrieve User objects.
*
* @author Matt Raible
* Modified by Dan Kibler
* Extended to implement Acegi UserDetailsService interface by David Carter [email protected]
* Modified by Bryan Noll to work with
* the new BaseDaoHibernate implementation that uses generics.
* Modified by jgarcia (updated to hibernate 4)
*/
@Repository("userDao")
public class UserDaoHibernate extends GenericDaoHibernate implements UserDao, UserDetailsService {
/**
* Constructor that sets the entity to User.class.
*/
public UserDaoHibernate() {
super(User.class);
}
/**
* {@inheritDoc}
*/
@SuppressWarnings("unchecked")
public List getUsers() {
Query qry = getSession().createQuery("from User u order by upper(u.username)");
return qry.list();
}
/**
* {@inheritDoc}
*/
public User saveUser(User user) {
if (log.isDebugEnabled()) {
log.debug("user's id: " + user.getId());
}
getSession().saveOrUpdate(user);
// necessary to throw a DataIntegrityViolation and catch it in UserManager
getSession().flush();
return user;
}
/**
* Overridden simply to call the saveUser method. This is happening
* because saveUser flushes the session and saveObject of BaseDaoHibernate
* does not.
*
* @param user the user to save
* @return the modified user (with a primary key set if they're new)
*/
@Override
public User save(User user) {
return this.saveUser(user);
}
/**
* {@inheritDoc}
*/
public UserDetails loadUserByUsername(String username) throws UsernameNotFoundException {
List users = getSession().createCriteria(User.class).add(Restrictions.eq("username", username)).list();
if (users == null || users.isEmpty()) {
throw new UsernameNotFoundException("user '" + username + "' not found...");
} else {
return (UserDetails) users.get(0);
}
}
/**
* {@inheritDoc}
*/
public String getUserPassword(Long userId) {
JdbcTemplate jdbcTemplate =
new JdbcTemplate(SessionFactoryUtils.getDataSource(getSessionFactory()));
Table table = AnnotationUtils.findAnnotation(User.class, Table.class);
return jdbcTemplate.queryForObject(
"select password from " + table.name() + " where id=?", String.class, userId);
}
}