Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I can't map query result to POJO.

JPA executes query ok (it trace in logs) but in mapping process throws a NPE.

What is wrong?

NPE:

java.lang.NullPointerException
at org.eclipse.persistence.queries.EntityResult.getValueFromRecord(EntityResult.java:147)
at org.eclipse.persistence.queries.ResultSetMappingQuery.buildObjectsFromRecords(ResultSetMappingQuery.java:165)
at org.eclipse.persistence.queries.ResultSetMappingQuery.executeDatabaseQuery(ResultSetMappingQuery.java:215)
at org.eclipse.persistence.queries.DatabaseQuery.execute(DatabaseQuery.java:675)
at org.eclipse.persistence.queries.DatabaseQuery.executeInUnitOfWork(DatabaseQuery.java:589)
at org.eclipse.persistence.internal.sessions.UnitOfWorkImpl.internalExecuteQuery(UnitOfWorkImpl.java:2857)
at org.eclipse.persistence.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1225)
at org.eclipse.persistence.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1207)
at org.eclipse.persistence.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1181)
at org.eclipse.persistence.internal.jpa.EJBQueryImpl.executeReadQuery(EJBQueryImpl.java:453)
at org.eclipse.persistence.internal.jpa.EJBQueryImpl.getResultList(EJBQueryImpl.java:681)
at com.silyan.meyem.view.visor.tienda.TiendaResources.delusuario(TiendaResources.java:284)

execution code:

List<TiendaTO> tiendas = entityManager.createNamedQuery("TiendaResources.tiendas_del_usuario", TiendaTO.class).setParameter(1, user.getId()).getResultList();

metadata:

    <named-native-query name="TiendaResources.tiendas_del_usuario" result-set-mapping="TiendaTOMapping">
<query>
select
    tienda.id as id,
    tienda.nombre as nombre,
    tienda.idporcliente as idporcliente,
    tienda.cliente_id as clienteid,
    ST_X(direccion.geolocalizacion) as x,
    ST_Y(direccion.geolocalizacion) as y
from
    user_tienda,
    tienda,
    direccion
where
    user_tienda.user_id = ? and
    tienda.id = user_tienda.tienda_id and
    direccion.id = tienda.direccion_id
</query>
</named-native-query>

<sql-result-set-mapping name="TiendaTOMapping">
    <entity-result entity-class="com.silyan.meyem.view.visor.tienda.TiendaTO" >
        <field-result name="id" column="id"/>
        <field-result name="idPorCliente" column="idporcliente"/>
        <field-result name="nombre" column="nombre"/>
        <field-result name="x" column="x"/>
        <field-result name="y" column="y"/>
    </entity-result>
</sql-result-set-mapping>

Plataform: Glassfish 3.0.1 - eclipselink 2.0.1.v20100213-r6600

Thanks!

share|improve this question

1 Answer

up vote 0 down vote accepted

Is com.silyan.meyem.view.visor.tienda.TiendaTO mapped class? If not, then you are facing this problem: https://bugs.eclipse.org/bugs/show_bug.cgi?id=288957

But on the other hand "entity-result entity-class", it kind of makes sense that entity is expected, of course some implementations can support also other classes.

share|improve this answer
TiendaTO is a POJO without @Entity annotation because is not mapped to database table, so in eclipselink is it impossible map result query to POJO? – angelcervera Sep 29 '11 at 14:20
Typo in the example. I use "result-set-mapping" and not "result-class" – angelcervera Sep 29 '11 at 17:41
Of course, no problems, leaves us still with entity-class. – Mikko Maunu Sep 29 '11 at 17:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.