Package ducttape.entities

Examples of ducttape.entities.Product


    EntityManager em;

    @PostConstruct
    public void insert() {
        for(int i =1; i <= 5; i++) {
            em.persist(new Product(i + " product", new BigDecimal(10 * i)));
        }
    }
View Full Code Here

TOP

Related Classes of ducttape.entities.Product

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.