Package me.victorhernandez.hellojsf.dao

Examples of me.victorhernandez.hellojsf.dao.ImplUserDao


  private void addUser(Usuario usuario) {
    // obteniendo el contexto
    ApplicationContext ctx = new ClassPathXmlApplicationContext(
        "dao-beans.xml");
    // inyectando el usuario
    ImplUserDao userDao = (ImplUserDao) ctx.getBean("implUserDao");
    userDao.addUser(usuario);
   
  }
View Full Code Here


  public List<Usuario> getRegisteredUsers() {
    // obteniendo el contexto
    ApplicationContext ctx = new ClassPathXmlApplicationContext(
        "dao-beans.xml");
    // inyectando el usuario
    ImplUserDao userDao = (ImplUserDao) ctx.getBean("implUserDao");
    //return userDao.getUsuarios();
    return userDao.getAll();

   
  }
View Full Code Here

TOP

Related Classes of me.victorhernandez.hellojsf.dao.ImplUserDao

Copyright © 2018 www.massapicom. 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.