0和Tomcat8。所以我在eclipse中创建了一个web项目。 首先,我创建了一个context.xml文件,并将其放入web-content文件夹中的META-INF文件夹中。它看起来像这样......
<context>
<Resource name="jdbc/myDataSource" auth="Container" type="javax.sql.DataSource"
maxActive="50" maxIdle="30" maxWait="10000" username="postgres"
password="password" driverClassName="org.postgresql.Driver"
url="jdbc:postgresql://localhost:5432/test" />
</Context>
然后在web.xml文件中创建一个条目。
<resource-ref>
<description>postgres Datasource example</description>
<res-ref-name>jdbc/myDataSource</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
我想在应用程序启动时创建EntityManagerFactory实例,所以我还在web.xml文件中添加了一个监听器条目。
<listener-class>com.listener.initlization.PersistenceListener</listener-class>
现在实现ServletContextListener以像这样创建EntityManagerFactory
@Override
public void contextInitialized(ServletContextEvent evt) {
ServletContext ctxt = evt.getServletContext();
entityManagerFactory = Persistence
.createEntityManagerFactory("test");
}
现在最终persistence.xml文件看起来像这样。
<?xml version="1.0" encoding="UTF-8" ?>
<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" xmlns="http://java.sun.com/xml/ns/persistence">
<persistence-unit name="test" transaction-type="RESOURCE_LOCAL">
<provider>org.hibernate.ejb.HibernatePersistence</provider>
<non-jta-data-source>java:comp/env/jdbc/myDataSource</non-jta-data-source>
<!-- <class>com.model.Employee</class> -->
<properties>
<!-- <property name="javax.persistence.jdbc.url" value="jdbc:postgres://localhost:5432/test" />
<property name="javax.persistence.jdbc.driver" value="org.postgresql.Driver" />
<property name="javax.persistence.jdbc.user" value="postgres" />
<property name="javax.persistence.jdbc.password" value="password" /> -->
<property name="hibernate.show_sql" value="true" />
<property name="hibernate.format_sql" value="true" />
<property name="hibernate.dialect" value="org.hibernate.dialect.PostgreSQLDialect" />
<property name="hibernate.hbm2ddl.auto" value="update" />
<property name="hibernate.connection.datasource" value="java:/comp/env/jdbc/myDataSource"/>
</properties>
</persistence-unit>
</persistence>
所以现在问题是当应用程序启动并且来到Listener它会抛出错误。
javax.persistence.PersistenceException: No Persistence provider for EntityManager named test.
请告诉我这个程序有什么不对。
答案 0 :(得分:0)
我相信你根本没有使用context和resource-ref。 在这种情况下,JPA仅使用persistence.xml的信息来连接数据库。您在那里提供所有必要的数据。 尝试在context.xml中输入错误的数据来检查这一点。