SHARE
TWEET

Untitled

a guest May 25th, 2016 11 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     @RequestMapping("get-users-list")
  2.     public UsersListDto getUsersList(){
  3.        
  4.         UsersListDto res = new UsersListDto();
  5.        
  6.         List<User> users = userDao.findAll();
  7.        
  8.         res.setListUsers(users);
  9.        
  10.         System.out.println(res);
  11.        
  12.         return res;
  13.     }
RAW Paste Data
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand
Not a member of Pastebin yet?
Sign Up, it unlocks many cool features!
 
Top