小编典典

从J2SE应用程序中的persistence.xml外部化凭据

hibernate

我正在编写一个使用JPA进行持久化的J2SE应用程序(无企业容器)。这是我的persistence.xml

<persistence xmlns="http://java.sun.com/xml/ns/persistence"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd"
    version="2.0">

    <persistence-unit name="dbstats">

    <!-- TODO: why is this needed? -->
    <class>dreambear.stats.data.GamePlayedEvent</class>
    <class>dreambear.stats.data.HyveMemberCountPoll</class>
    <class>dreambear.stats.data.ProfileCountPoll</class>
    <class>dreambear.stats.data.UserSession</class>
    <class>dreambear.stats.data.UsersOnlinePoll</class>

    <properties>

        <property name="hibernate.dialect" value="org.hibernate.dialect.MySQLDialect" />
        <property name="hibernate.max_fetch_depth" value="3" />
        <property name="hibernate.hbm2ddl.auto" value="update" />

        <property name="javax.persistence.jdbc.driver" value="com.mysql.jdbc.Driver" />

        <!-- TODO: externalize information -->
        <property name="javax.persistence.jdbc.user" value="dbstats" />
        <property name="javax.persistence.jdbc.password" value="*****" />
        <property name="javax.persistence.jdbc.url" value="jdbc:mysql://example.com/dbstats" />

    </properties>

    </persistence-unit>

</persistence>

这是一个静态文件,“编译”到应用程序中。但是,我需要提取凭据,以便可以在运行时从配置参数中加载它们,因为它们在应用程序的开发和实时版本方面是不同的。

我以默认方式加载持久性设置:

emf = Persistence.createEntityManagerFactory("dbstats");

如何在此设置中外部化凭据?我可以在运行时生成persistence.xml文件,但这有点hacky。


阅读 262

收藏
2020-06-20

共1个答案

小编典典

您可以在创建时提供其他属性EntityManagerFactory

Map<String, String> properties = new HashMap<String, String>();
properties.put("javax.persistence.jdbc.user", ...);
...

emf = Persistence.createEntityManagerFactory("dbstats", properties);
2020-06-20