Package com.tcs.hrr.dao

Examples of com.tcs.hrr.dao.UserDAO.findById()


  }

  @Test
  public void testFindById() {
    UserDAO ud = (UserDAO)ctx.getBean("userDaO");
    User t_User = (User)ud.findById(1);
    System.out.println("testFindById : "+t_User.getName()+"/"+t_User.getPassword());
  }


}
View Full Code Here


  }

  @Test
  public void testFindById() {
    UserDAO ud = (UserDAO)ctx.getBean("userDaO");
    User t_User = (User)ud.findById(1);
    System.out.println("testFindById : "+t_User.getName()+"/"+t_User.getPassword());
  }
 
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.