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.administracion.logic; import co.com.siscomputo.administracion.entites.ObjetoRetornaEntity; import co.com.siscomputo.administracion.persistencia.FestivosEntity; import co.com.siscomputo.conexion.HibernateUtil; import java.util.ArrayList; import org.hibernate.HibernateException; import org.hibernate.Query; import org.hibernate.Session; import org.hibernate.Transaction; /** * * @author LENOVO */ public class FestivosLogic { 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 para ingresar un Festivo * @param festivo * @return */ public FestivosEntity ingresaFestivo(FestivosEntity festivo) { try { String validaConexion = initOperation(); if (!"Ok".equalsIgnoreCase(validaConexion)) { festivo.setNumeroRespuesta(3); festivo.setTrazaRespuesta("Error de Conexin " + validaConexion); } else { festivo.setIdFEstivo(maxFestivo()); sesion.save(festivo); tx.commit(); festivo.setTrazaRespuesta("Insercin de Festivo Exitosa"); festivo.setNumeroRespuesta(19); } } catch (Exception e) { e.printStackTrace(); festivo = new FestivosEntity(); festivo.setNumeroRespuesta(0); festivo.setTrazaRespuesta(e.getMessage()); } finally { try { sesion.close(); } catch (HibernateException hibernateException) { hibernateException.printStackTrace(); } } return festivo; } /** * Mtodo que retorna el siguiente ID de la tabla festivos * @return */ public int maxFestivo() { int ret = -1; try { String validaConexion = initOperation(); if (!"Ok".equalsIgnoreCase(validaConexion)) { } else { Query query = sesion.createQuery("SELECT MAX(idFEstivo) FROM FestivosEntity"); ret = (int) query.uniqueResult(); ret++; } } catch (Exception e) { ret = 1; } return ret; } /** * Mtodo para actualizar un festivo * @param festivo * @return */ public FestivosEntity actualizaFestivo(FestivosEntity festivo) { try { String validaConexion = initOperation(); if (!"Ok".equalsIgnoreCase(validaConexion)) { festivo.setNumeroRespuesta(3); festivo.setTrazaRespuesta("Error de Conexin " + validaConexion); } else { sesion.update(festivo); tx.commit(); festivo.setTrazaRespuesta("Actualizacin de Festivo Exitosa"); festivo.setNumeroRespuesta(20); } } catch (Exception e) { e.printStackTrace(); festivo = new FestivosEntity(); festivo.setNumeroRespuesta(0); festivo.setTrazaRespuesta(e.getMessage()); } finally { try { sesion.close(); } catch (HibernateException hibernateException) { hibernateException.printStackTrace(); } } return festivo; } /** * Mtodo que retorna la lista de festivos disponibles * @return */ public ObjetoRetornaEntity listaFestivos() { ObjetoRetornaEntity retorna = new ObjetoRetornaEntity(); try { String validaConexion = initOperation(); if (!"Ok".equalsIgnoreCase(validaConexion)) { retorna.setNumeroRespuesta(3); retorna.setTrazaRespuesta("Error de Conexin " + validaConexion); } else { Query query = sesion.createQuery("FROM FestivosEntity"); retorna.setRetorna((ArrayList<Object>) query.list()); retorna.setTrazaRespuesta("Consulta tabla Festivos exitosa"); retorna.setNumeroRespuesta(21); } } catch (Exception e) { e.printStackTrace(); retorna = new ObjetoRetornaEntity(); retorna.setNumeroRespuesta(0); retorna.setTrazaRespuesta(e.getMessage()); } finally { try { sesion.close(); } catch (HibernateException hibernateException) { hibernateException.printStackTrace(); } } return retorna; } /** * Mtodo que trae un Festivo por ID * @param idFestivo * @return */ public FestivosEntity festivoPorId(int idFestivo) { FestivosEntity festivo = new FestivosEntity(); String validaConexion = initOperation(); try { if (!"Ok".equalsIgnoreCase(validaConexion)) { festivo.setNumeroRespuesta(3); festivo.setTrazaRespuesta("Error de Conexin: " + validaConexion); } else { Query query = sesion.createQuery("FROM FestivosEntity f WHERE f.idFEstivo=:idS"); query.setParameter("idS", idFestivo); festivo = (FestivosEntity) query.uniqueResult(); festivo.setTrazaRespuesta("Consulta de festivo exitosa"); festivo.setNumeroRespuesta(35); } } catch (Exception e) { e.printStackTrace(); festivo = new FestivosEntity(); festivo.setNumeroRespuesta(0); festivo.setTrazaRespuesta(e.getMessage()); } finally { try { sesion.close(); } catch (HibernateException hibernateException) { hibernateException.printStackTrace(); } } return festivo; } }