Package formation.jee6

Examples of formation.jee6.ProducerBean


    public List<Product> getProducts() {
        return em.createQuery("select p from Product p").getResultList();
    }
   
    public void createProductInDB() {
        em.persist(new Product("car","Une voiture",25));
    }
View Full Code Here

TOP

Related Classes of formation.jee6.ProducerBean

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.