Skip to content

Instantly share code, notes, and snippets.

@john-nash-rs
Created July 12, 2018 13:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save john-nash-rs/eb3ecfc7e8c0b8cdb2e1b7e5cc84de60 to your computer and use it in GitHub Desktop.
Save john-nash-rs/eb3ecfc7e8c0b8cdb2e1b7e5cc84de60 to your computer and use it in GitHub Desktop.
import io.dropwizard.hibernate.AbstractDAO;
import org.hibernate.SessionFactory;
import java.util.List;
/**
* Created by harshvardhan on 10/07/18.
*/
public class InfoDao extends AbstractDAO<Info> {
public InfoDao(SessionFactory factory) {
super(factory);
}
public List<Info> findAll() {
return list(namedQuery("com.wordpress.nullpointerexception1.info.findAll"));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment