Java tutorial
/* * Copyright (C) 2015 hcadavid * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package edu.eci.pdsw.samples.textview; import edu.eci.pdsw.samples.entities.Consulta; import edu.eci.pdsw.samples.entities.Paciente; import java.io.IOException; import java.io.InputStream; import java.sql.SQLException; import java.sql.Timestamp; import java.util.Date; import java.util.LinkedHashSet; import java.util.List; import java.util.Set; import org.apache.ibatis.io.Resources; import org.apache.ibatis.session.SqlSession; import org.apache.ibatis.session.SqlSessionFactory; import org.apache.ibatis.session.SqlSessionFactoryBuilder; import edu.eci.pdsw.samples.mybatis.mappers.PacienteMapper; /** * * @author hcadavid */ public class MyBatisExample { /** * Mtodo que construye una fbrica de sesiones de MyBatis a partir del * archivo de configuracin ubicado en src/main/resources * * @return instancia de SQLSessionFactory */ public static SqlSessionFactory getSqlSessionFactory() { SqlSessionFactory sqlSessionFactory = null; if (sqlSessionFactory == null) { InputStream inputStream; try { inputStream = Resources.getResourceAsStream("mybatis-config.xml"); sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream); } catch (IOException e) { throw new RuntimeException(e.getCause()); } } return sqlSessionFactory; } /** * Programa principal de ejempo de uso de MyBATIS * @param args * @throws SQLException */ public static void main(String args[]) throws SQLException { SqlSessionFactory sessionfact = getSqlSessionFactory(); SqlSession sqlss = sessionfact.openSession(); PacienteMapper pmap = sqlss.getMapper(PacienteMapper.class); Date d = new java.sql.Date(1994 - 01 - 29); Consulta c = new Consulta(java.sql.Date.valueOf("2016-04-01"), "Esta muy gordo"); pmap.insertConsulta(c, 12, "CC"); System.out.println(pmap.loadPacienteById(12, "CC")); System.out.println(pmap.loadPacienteById(105, "CC")); sqlss.commit(); sqlss.close(); } /** * Registra un nuevo paciente y sus respectivas consultas (si existiesen). * @param pmap mapper a traves del cual se har la operacion * @param p paciente a ser registrado */ public void registrarNuevoPaciente(PacienteMapper pmap, Paciente p) { } }