Guest User

Untitled

a guest
May 3rd, 2012
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. junit test case for a method with hibernate fetch
  2. public List<User> userList() {
  3. try
  4. {
  5. List <User> result = hibernateTemplate.find("from User");
  6. return result;
  7. }
  8. finally {
  9. //close the session and user-supplied JDBC connection
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment