我正在使用带有休眠功能的 Guice-JPA 模块来执行 DAO 操作。
在persistence.xml 中对连接信息进行硬编码时,一切正常。但是当我尝试使用属性文件作为连接参数时,persistence.xml 只是将它们视为空字符串,我得到一个异常。
这是我的 guice 代码和 Persistense.xml。
JpaPersistModule jpaModule = new JpaPersistModule("myModule");
Properties properties = new Properties();
try {
properties.load(Bootstrap.class.getClassLoader().getResourceAsStream("appConfig.properties"));
} catch (IOException e) {
e.printStackTrace();
}
JpaPersistModule module = jpaModule.properties(properties);
injector = Guice.createInjector(new ApplicationConfig(), module);
PersistService persistService = injector.getInstance(PersistService.class);
persistService.start();
在这段代码之后,我从调试器确认属性对象携带所有属性,所以我确定它正确读取了属性文件。
这是属性文件和persistence.xml
hibernate.username=root
<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="24x7monitoring" transaction-type="RESOURCE_LOCAL">
<provider>org.hibernate.ejb.HibernatePersistence</provider>
<properties>
<property name="hibernate.show_sql" value="false" />
<property name="javax.persistence.jdbc.driver" value="com.mysql.jdbc.Driver" />
<property name="javax.persistence.jdbc.url" value="jdbc:mysql://localhost/dbname"/>
<property name="javax.persistence.jdbc.user" value="${hibernate.username}" />
<property name="javax.persistence.jdbc.password" value="" />
<property name="hibernate.dialect" value="org.hibernate.dialect.MySQLDialect"/>
<property name="hibernate.hbm2ddl.auto" value="update"/>
</properties>
</persistence-unit>
我得到以下异常:
Access denied for user ''@'localhost' to database
请告知为什么 JPA 模块没有读取属性文件,知道它在没有占位符的情况下可以正常工作。