Java持久性问题
问题描述:
我想通过GlassFish在EJB中使用JPA创建并运行一个简单的示例。我有以下persistence.xml
Java持久性问题
<persistence version="1.0" 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">
<persistence-unit name="default" transaction-type="RESOURCE_LOCAL">
<provider>org.eclipse.persistence.jpa.PersistenceProvider</provider>
<jta-data-source>jdbc/wms</jta-data-source>
<class>com.xxx.xxx.datamodel.MyTest</class>
<exclude-unlisted-classes />
<properties>
<property name="eclipselink.target-server" value="SunAS9"/>
<property name="eclipselink.logging.level" value="FINEST"/>
<property name="eclipselink.target-database" value="Oracle"/>
<property name="eclipselink.jdbc.driver" value="oracle.jdbc.OracleDriver" />
<property name="eclipselink.jdbc.url" value="[dbconnectionstring]" />
<property name="eclipselink.jdbc.user" value="user" />
<property name="eclipselink.jdbc.password" value="password" />
</properties>
</persistence-unit>
</persistence>
一个简单的实体:
package com.xxx.xxx.datamodel;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
@Entity
@Table(name = "move_task")
public class MyTest {
private int key;
private String description;
@Id
public int getKey(){
return key;
}
public void setKey(int key){
this.key = key;
}
public String getDescription(){
return this.description;
}
public void setDescription(String description){
this.description = description;
}
@Override
public String toString(){
return "Key: " + key + " Description: " + description;
}
}
最后下面的代码尝试使用上面:
private void jpaCall() {
try{
emf = Persistence.createEntityManagerFactory("default");
em = emf.createEntityManager();
log.info("JPA init complete");
final List<MyTest> list = em.createQuery("select p from MyTest p").getResultList();
for (MyTest current : list) {
final String description = current.getDescription();
log.info("JPA: Desc: " + description);
}
}
catch(Exception e){
log.error("Error on JPA", e);
}
}
当这个运行我的EJB的一部分初始化我得到以下错误:
java.lang.IllegalArgumentException: An exception occurred while creating a query in EntityManager:
Exception Description: Error compiling the query [select p from MyTest p]. Unknown entity type [MyTest].
...
Caused by: Exception [EclipseLink-8034] (Eclipse Persistence Services - 2.0.0.v20091127-r5931): org.eclipse.persistence.exceptions.JPQLException
Exception Description: Error compiling the query [select p from MyTest p]. Unknown entity type [MyTest].
我不知道我做错了什么,并会感谢任何帮助。
干杯,
詹姆斯
答
因此,作为上述评论表明这似乎是在为GlassFish的Eclipse插件的问题。手动部署耳朵时没有问题。
谢谢大家的帮助。
James
+0
请报告错误https://glassfishplugins.dev.java.net/issues/ :) – 2010-02-17 16:08:40
+0
完成:https://glassfishplugins.dev.java.net/issues/show_bug.cgi?id = 307 – James 2010-02-17 17:18:05
你如何包装所有这一切?你把你的persistence.xml放在哪里? – 2010-02-12 13:57:13
它从日食中部署到glassfish。 persistence.xml位于EJB的META-INF目录中。 – James 2010-02-12 14:18:19
我知道这是找到的persistence.xml,因为如果我改变它有一个无效的供应商,我得到此时,相应的例外: org.eclipse.persistence.jpa.PersistenceProviderjhjh javax.persistence.PersistenceException:没有持久性提供者为EntityManager命名为默认 –
James
2010-02-12 14:45:03