Package org.hibernate.examples.mapping.compositeId.manytoone

Examples of org.hibernate.examples.mapping.compositeId.manytoone.Product


    public void manytoone() throws Exception {
        Order order = new Order();
        order.setNumber("order-1234");
        em.persist(order);

        Product product = new Product();
        product.setName("monitor");
        em.persist(product);

        OrderDetail detail = new OrderDetail(order, product);
        order.getOrderDetails().add(detail);
        product.getOrderDetails().add(detail);

        em.persist(detail);
        em.flush();
        em.clear();
View Full Code Here

TOP

Related Classes of org.hibernate.examples.mapping.compositeId.manytoone.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.