我正在尝试将基于hibernate的GWT实现转换为JPA2版本。我添加了persistence.xml,特定的库并添加了一些代码来打开(通过获取entityManager)。我只是在当地就业,我不使用谷歌的应用程序引擎(我不打算使用它)。
我收到以下消息:
无法连接到MySQL数据库 服务器(提供商错误。提供商: org.datanucleus.store.appengine.jpa.DatastorePersistenceProvider) 离开
我的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="mydatabase_dev">
<provider>org.hibernate.ejb.HibernatePersistence</provider>
<class>mypackage.Product</class>
<class>mypackage.Expert</class>
<class>mypackage.Person</class>
<properties>
<property name="hibernate.archive.autodetection" value="class, hbm"/>
<property name="hibernate.show_sql" value="false"/>
<property name="hibernate.connection.driver_class" value="com.mysql.jdbc.Driver"/>
<property name="hibernate.connection.url" value="jdbc:mysql://myhost.mydomain/MYDATABASE"/>
<property name="hibernate.connection.username" value="myusername"/>
<property name="hibernate.connection.password" value="topsecret"/>
<property name="hibernate.dialect" value="org.hibernate.dialect.MySQLDialect"/>
<property name="hibernate.hbm2ddl.auto" value="update"/>
<property name="hibernate.c3p0.min_size" value="5"/>
<property name="hibernate.c3p0.max_size" value="20"/>
<property name="hibernate.c3p0.timeout" value="300"/>
<property name="hibernate.c3p0.max_statements" value="50"/>
<property name="hibernate.c3p0.idle_test_period" value="3000"/>
<!-- Disable the second-level cache -->
<property name="cache.provider_class" value="org.hibernate.cache.NoCacheProvider"/>
</properties>
</persistence-unit>
</persistence>
没有其他错误消息,警告,堆栈跟踪等。
有什么问题或以什么方式检查真正的问题是什么?
答案 0 :(得分:0)
GAE / J不执行MySQL,也不执行JPA2,那么为什么要包含它/在persistence.xml中指定它?也许如果您发布 persistence.xml ,那么人们可以发表明智的意见......