我想让我的应用程序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个带有数据库参数的不同文件:
我编辑提到我正在使用Shiro Security,它也需要一些数据库参数。我只需要一个数据库参数位置,就可以将它们保留在context.xml中,并在其他数据库中引用它。
1)蚂蚁读取context.xml
Context.xml具有
<?xml version="1.0" encoding="UTF-8"?> <Context> <!-- Other stuff... --> <!-- Shiro's --> <Resource name="jdbc/postgres" auth="Container" type="javax.sql.DataSource" driverClassName="org.postgresql.Driver" url="jdbc:postgresql://url-to-db/database" username="user" password="pass" /> </Context>
在Ant build.xml中使用过
<xmlproperty file="/path/to/context.xml" keepRoot="false" semanticAttributes="true" includeSemanticAttribute="true" />
然后使用
<target name="init-flyway"> <property name="flyway.url" value="${Resource.url}" /> <property name="flyway.user" value="${Resource.username}" /> <property name="flyway.password" value="${Resource.password}" /> <!-- stuff stuff stuff --> </target>
2)persistence.xml读取context.xml
可以使用此使用上下文的数据存储
<non-jta-data-source>java:/comp/env/jdbc/postgres</non-jta-data-source>
因此,我杀死了3个数据库参数,只剩下1个。
谢谢您的帮助!