Package org.hibernate.examples.mapping.associations.onetoone.unidirectionalOneToOne

Examples of org.hibernate.examples.mapping.associations.onetoone.unidirectionalOneToOne.Vehicle


    }

    @Test
    public void unidirectionalOneToOne() throws Exception {

        Vehicle vehicle = new Vehicle();
        vehicle.setBrand("Mercedes");

        Wheel wheel = new Wheel();
        wheel.setVehicle(vehicle);

        em.persist(vehicle);
View Full Code Here

TOP

Related Classes of org.hibernate.examples.mapping.associations.onetoone.unidirectionalOneToOne.Vehicle

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.