编辑:不重复但几乎
我想让我的应用程序 persistence.xml 类似于
<?xml version="1.0" encoding="UTF-8"?>
<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_1_0.xsd"
version="1.0">
<persistence-unit name="appName" transaction-type="RESOURCE_LOCAL">
<provider>org.hibernate.ejb.HibernatePersistence</provider>
<properties>
<property name="hibernate.dialect" value="${db.dialect'}"/>
<property name="javax.persistence.jdbc.driver" value="${db.driver}"/>
<property name="javax.persistence.jdbc.user" value="${db.user}"/>
<property name="javax.persistence.jdbc.password" value="${db.password}"/>
<property name="javax.persistence.jdbc.url" value="${db.url}"/>
</properties>
</persistence-unit>
</persistence>
从源文件夹中某处的简单文本文件中获取这些占位符值。
我读到使用 Spring 时可能会这样做
<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<value>classpath:com/foo/jdbc.properties</value>
</property>
</bean>
但是这里我们没有使用 Spring,只使用了 Hibernate 和一些 Primefaces。
可能吗?
谢谢!
编辑:我没有提到一些事情,但作为参考,我也在使用 Shiro Security 和 Ant 来做一些事情。我将发布解决方案作为答案。这使我的项目有 3 个带有数据库参数的不同文件:
- persistence.xml(休眠)
- context.xml (Shiro)
- database.properties(用于 Ant 中的 Flyway 任务)