Java tutorial
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package co.com.siscomputo.mejoramientocontinuo.logic; import co.com.siscomputo.administracion.entites.ObjetoRetornaEntity; import co.com.siscomputo.conexion.HibernateUtil; import co.com.siscomputo.mejoramientocontinuo.persistencia.PlanesAccionEntity; import java.util.ArrayList; import org.hibernate.HibernateException; import org.hibernate.Query; import org.hibernate.Session; import org.hibernate.Transaction; /** * * @author Felipe */ public class PlanesAccionLogic implements AutoCloseable { private Session sesion;//Variable de la sesin y conexin de la base de datos private Transaction tx;//Variable que almacena las consultas y las transacciones de la base de datos /** * Metodo que establece la conexin a la base de datos, previa validacin de * que la sesin no exista o este nula * * @throws HibernateException */ private String initOperation() { String retorno; try { if (sesion == null) { sesion = HibernateUtil.getSessionFactory().openSession(); tx = sesion.beginTransaction(); } retorno = "Ok"; } catch (Error e) { retorno = "Error Conexin Hibernate " + e; } return retorno; } /** * Mtodo que trae el siguiente ID de una tabla * * @return */ private int maxDocumento() { int ret = -1; try { String validaConexion = initOperation(); if (!"Ok".equalsIgnoreCase(validaConexion)) { } else { Query query = sesion.createQuery("SELECT MAX(idPlanesAccion) FROM PlanesAccionEntity"); ret = (int) query.uniqueResult(); ret++; } } catch (Exception e) { ret = 1; } return ret; } /** * Metodo para insertar planes de accion * * @param obj * @return */ public PlanesAccionEntity insertarPlanesAccion(PlanesAccionEntity obj) { try { String conexion = initOperation(); if ("OK".equalsIgnoreCase(conexion)) { obj.setIdPlanesAccion(maxDocumento()); sesion.save(obj); tx.commit(); obj.setNumeroRespuesta(23); obj.setTrazaRespuesta("Insercion exitosa"); } else { obj = new PlanesAccionEntity(); obj.setNumeroRespuesta(0); obj.setTrazaRespuesta("Error de conexion: " + conexion); } } catch (Exception e) { e.printStackTrace(); obj = new PlanesAccionEntity(); obj.setNumeroRespuesta(0); obj.setTrazaRespuesta(e.getMessage()); } return obj; } /** * Metodo para actualizar un plan de accion * * @param obj * @return */ public PlanesAccionEntity actualizarPlanesAccion(PlanesAccionEntity obj) { try { String conexion = initOperation(); if ("OK".equalsIgnoreCase(conexion)) { sesion.update(obj); tx.commit(); } else { obj = new PlanesAccionEntity(); obj.setNumeroRespuesta(0); obj.setTrazaRespuesta("Erro de conexion: " + conexion); } } catch (Exception e) { e.printStackTrace(); obj.setNumeroRespuesta(0); obj.setTrazaRespuesta(e.getMessage()); } return obj; } /** * Metodo para listar planes de accion * * @return */ public ObjetoRetornaEntity listarPlanesAccion() { ObjetoRetornaEntity obj = new ObjetoRetornaEntity(); try { String conexion = initOperation(); if ("OK".equalsIgnoreCase(conexion)) { Query sentencia = sesion.createQuery("From PlanesAccionEntity"); obj.setRetorna((ArrayList<Object>) sentencia.list()); obj.setTrazaRespuesta("Consulta tabla de planes accion exitosa"); obj.setNumeroRespuesta(1); } else { obj = new ObjetoRetornaEntity(); obj.setNumeroRespuesta(0); obj.setTrazaRespuesta("Error de conexion :" + conexion); } } catch (Exception e) { e.printStackTrace(); obj = new ObjetoRetornaEntity(); obj.setNumeroRespuesta(0); obj.setTrazaRespuesta(e.getMessage()); } return obj; } @Override public void close() throws Exception { try { if (tx != null) { tx.commit(); } if (sesion != null) { sesion.close(); sesion = null; } } catch (Exception e) { e.printStackTrace(); } } }