br.ifmt.dai.curso.GerenciadorEventos.java Source code

Java tutorial

Introduction

Here is the source code for br.ifmt.dai.curso.GerenciadorEventos.java

Source

/*
 * 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 br.ifmt.dai.curso;

import java.util.List;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.Transaction;
import org.hibernate.cfg.Configuration;

/**
 *
 * @author 02376421152
 */
public class GerenciadorEventos {

    public static void salvarEvento(String evento, String data) {
        try {
            SessionFactory sf = new Configuration().configure("hibernate.cfg.xml").buildSessionFactory();
            Session s = sf.openSession();
            Transaction tx = s.beginTransaction();
            Eventos e = new Eventos();
            e.setDataEvento(data);
            e.setEvento(evento);
            s.saveOrUpdate(e);
            tx.commit();
            s.close();
            System.out.println("Evento incluido");
        } catch (Exception e) {
        }
    }

    public List listaEventos() {
        SessionFactory sf = new Configuration().configure("hibernate.cfg.xml").buildSessionFactory();
        Session s = sf.openSession();
        s.beginTransaction();
        List lista = s.createQuery("from Eventos").list();
        s.getTransaction().commit();
        return lista;
    }
}