我正在使用jpa 2.1使用em.createStoredProcedureQuery()
来调用MySql过程。
程序本身正在运行,并返回一个编号的名称和电子邮件地址列表,如MySql Workbench所示:
我的问题是设置POJO来存储结果列表。我的实体类非常基本,只有三个属性+ getters /和setter。提供了三参数构造函数和toString()方法。请注意,数据库中没有与此实体关联的对应表,该实体仅用于在java对象列表中转换查询结果列表:
import java.io.Serializable;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Transient;
@Entity
public class NomsEtCourriels implements Serializable {
@Id
private Integer noLigne;
private String noms;
private String courriels;
public NomsEtCourriels() {
System.err.println("[NomsEtCouriels]no argument constructor");
}
public NomsEtCourriels(Integer noLigne, String noms, String courriels) {
System.err.println("[NomsEtCouriels]3 field constructor : " + noLigne + ", noms=" + noms + ", courriels=" + courriels);
this.noLigne = noLigne;
this.noms = noms;
this.courriels = courriels;
}
+ getters / + setters
public String toString() {
return getNoLigne() + ":" + noms + " " + courriels;
}
执行时,我收到一个错误,因为其中两个fieds返回空值:
javax.persistence.PersistenceException: Exception [EclipseLink-6044] (Eclipse Persistence Services - 2.5.2.v20140319-9ad6abd): org.eclipse.persistence.exceptions.QueryException
Exception Description: The primary key read from the row [DatabaseRecord(
NOMSETCOURRIELS.NOLIGNE => null
NOMSETCOURRIELS.COURRIELS => <de****@hotmail.com>,
NOMSETCOURRIELS.NOMS => null)] during the execution of the query was detected to be null. Primary keys must not contain null.
Query: ResultSetMappingQuery(referenceClass=NomsEtCourriels )
如果我将@Id注释移动到courriel
(电子邮件)字段,我不会收到任何错误,但输出显示相同的两个字段仍为null,即使DB过程确实返回值:
[MembresControleur]init this : org.labottedefoin.bfjsf.jpa.MembresControleur@1d84583b
[ejbMembresFacade]faireEnvoiCourriel envoiCourriel =StoredProcedureQueryImpl(ResultSetMappingQuery())
[EL Fine]: sql: 2015-03-10 22:42:46.171--ClientSession(955321153)--Connection(1494873499)--Thread(Thread[http-listener-2(1),5,main])--{ CALL envoi_courriel() }
[ejbMembresFacade]faireEnvoiCourriel envoiCourriel.execute() returned True.
[ejbMembresFacade]faireEnvoiCourriel courriel : null:null <de*****1@hotmail.com>,
[ejbMembresFacade]faireEnvoiCourriel courriel : null:null <au****@hotmail.fr>,
[ejbMembresFacade]faireEnvoiCourriel courriel : null:null <v****@b2b2c.ca>,
[ejbMembresFacade]faireEnvoiCourriel courriel : null:null <cha****@live.fr>,
[ejbMembresFacade]faireEnvoiCourriel courriel : null:null <si*****@b2b2c.ca>,
以下是调用DB过程的实际方法:
public List<NomsEtCourriels> faireEnvoiCourriel () {
List<NomsEtCourriels> courriels;
StoredProcedureQuery envoiCourriel = getEntityManager().createStoredProcedureQuery("envoi_courriel", NomsEtCourriels.class);
logger.info("[ejbMembresFacade]faireEnvoiCourriel envoiCourriel =" + envoiCourriel);
if (envoiCourriel.execute()) {
logger.info("[ejbMembresFacade]faireEnvoiCourriel envoiCourriel.execute() returned True.");
courriels = envoiCourriel.getResultList();
if (courriels != null) {// Iterate over the result set
for (NomsEtCourriels courriel : courriels) {
logger.info("[ejbMembresFacade]faireEnvoiCourriel courriel : " + courriel);
}
}
return courriels;
} else {
logger.info("[faireEnvoiCourriel] execute n'a renvoyé aucun result set");
return null;
}
}
知道为什么在POJO中没有正确设置行号和名称字段?