Skip to content

Instantly share code, notes, and snippets.

@jeetprksh
Last active September 29, 2018 06:04
Show Gist options
  • Save jeetprksh/dd8804441a342e7b56f356d1eabdbb54 to your computer and use it in GitHub Desktop.
Save jeetprksh/dd8804441a342e7b56f356d1eabdbb54 to your computer and use it in GitHub Desktop.
public class UserDaoImpl extends CommonDaoImpl implements UserDAO {
@Override
public int createUser(User user) throws HibernateException {
return super.saveEntity(user);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment