05 JPAUtil工具类

Posted zhaochengf

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了05 JPAUtil工具类相关的知识,希望对你有一定的参考价值。

public final class JPAUtil {
    // JPA的实体管理器工厂:相当于Hibernate的SessionFactory
    private static EntityManagerFactory em;
    // 使用静态代码块赋值
    static {
        // 注意:该方法参数必须和persistence.xml中persistence-unit标签name属性取值一致
        em = Persistence.createEntityManagerFactory("myJpa");
    }
    /**
     * 使用管理器工厂生产一个管理器对象
     * 
     * @return
     */
    public static EntityManager getEntityManager() {
        return em.createEntityManager();
    }
}

 

以上是关于05 JPAUtil工具类的主要内容,如果未能解决你的问题,请参考以下文章

solr分布式索引实战分片配置读取:工具类configUtil.java,读取配置代码片段,配置实例

android在特定片段中隐藏工具栏

如何从片段内的列表视图打开链接网址?

从android中的片段管理工具栏的导航和后退按钮

片段和导航抽屉的不同工具栏

PHP代码-psysh调试代码片段工具