com.gerenciaProyecto.DaoImple.ProductoDaoImpl.java Source code

Java tutorial

Introduction

Here is the source code for com.gerenciaProyecto.DaoImple.ProductoDaoImpl.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 com.gerenciaProyecto.DaoImple;

import com.gerenciaProyecto.Dao.ProductoDao;
import com.gerenciaProyecto.Entites.Producto;
import java.util.ArrayList;
import java.util.List;
import javax.persistence.EntityManager;
import javax.persistence.PersistenceContext;
import javax.persistence.Query;
import org.springframework.stereotype.Repository;
import org.springframework.transaction.annotation.Transactional;

/**
 *
 * @author Agandio
 */
@Repository
public class ProductoDaoImpl implements ProductoDao {

    @PersistenceContext
    private EntityManager entityManager;

    public EntityManager getEntityManager() {
        return entityManager;
    }

    @Override
    public List<Producto> listar() {
        EntityManager em = getEntityManager();
        List<Producto> lista = new ArrayList<Producto>();
        Query q = em.createQuery("SELECT p FROM Producto p where p.estado= :estado ");
        q.setParameter("estado", Producto.ESTADOS.ACTIVO.getEstado());
        lista = q.getResultList();
        return lista;
    }

    @Override
    @Transactional
    public void crear(Producto producto) {
        EntityManager em = getEntityManager();
        try {
            //            producto.set

            em.persist(producto);
            em.flush();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    @Override
    public List<Producto> listarInactivos() {
        EntityManager em = getEntityManager();
        List<Producto> lista = new ArrayList<Producto>();
        Query q = em.createQuery("SELECT p FROM Producto p where p.estado= :estado ");
        q.setParameter("estado", Producto.ESTADOS.INACTIVO.getEstado());
        lista = q.getResultList();
        return lista;
    }

    @Override
    @Transactional
    public void modificar(Producto producto) {
        EntityManager em = getEntityManager();
        try {
            em.merge(producto);
            em.flush();
        } catch (Exception e) {
            e.printStackTrace();
        }

    }

    @Override
    public Producto ObtenerProductoId(Integer p_IdProducto) {
        EntityManager em = getEntityManager();
        List<Producto> lista = new ArrayList<Producto>();
        Query q = em.createQuery("SELECT p FROM Producto p WHERE p.id = :id");
        q.setParameter("id", p_IdProducto);
        lista = q.getResultList();
        for (Producto lista1 : lista) {
            if (lista1.getId() == p_IdProducto) {
                return lista1;
            }
        }
        return null;
    }
}