Examples of ChildUncacheable


Examples of org.apache.openjpa.persistence.cache.jpa.model.ChildUncacheable

    }

    public void testSimpleFind() throws Exception {
        EntityManager em = emf.createEntityManager();
        try {
            ChildUncacheable c = new ChildUncacheable();
            em.getTransaction().begin();
            em.persist(c);
            em.getTransaction().commit();
            assertEquals(c, em.find(ChildUncacheable.class, c.getId()));
            em.clear();
            assertEquals(c.getId(), em.find(ChildUncacheable.class, c.getId()).getId());

        } finally {
            em.close();
        }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.