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

I am using JPA in my project.

I came to a query in which I need to make join operation on five tables. So I created a native query which returns five fields.

Now I want to convert the result object to java POJO class which contains the same five Strings.

Is there any way in JPA to directly cast that result to POJO object list ??

I came to the following solution ..

@NamedNativeQueries({  
    @NamedNativeQuery(  
        name = "nativeSQL",  
        query = "SELECT * FROM Actors",  
        resultClass = db.Actor.class),  
    @NamedNativeQuery(  
        name = "nativeSQL2",  
        query = "SELECT COUNT(*) FROM Actors",  
        resultClass = XXXXX) // <--------------- problem  
})  

Now here in resultClass, do we need to provide a class which is actual JPA entity ? OR We can convert it to any JAVA POJO class which contains the same column names ?

Thanks, Gunjan Shah.

share|improve this question

2 Answers

up vote 6 down vote accepted

JPA provides an SqlResultSetMapping that allows you to map whatever returns from your native query into an Entity or a custom class.

share|improve this answer
Thanks for the reply. Here we are mapping our result with the entity with tha java entity class with "@EntityResult" and "@FieldResult" annotations. Thats fine. But here i need more clarity. Is is required that the class which we are mapping with the result must be a JPA entity class ? OR can we use a simple POJO class which is not an entity buy which have all the required variable as the columns in the result set. – Gunjan Shah Oct 22 '12 at 16:52
@GunjanShah: best way to know is to give it a try :) also, an entity is just the same pojo, just with some annotations. as long as you're not trying to persist it, it will stay a pojo. – Denis Tulskiy Oct 22 '12 at 17:04
When I tried this I got an error that the class was not a known Entity. I ended up using this approach stackoverflow.com/questions/5024533/… instead of trying to use a native query. – FGreg Jan 30 at 21:43

Use DTO Design Pattern. It was used in EJB 2.0. Entity was container managed. DTO Design Pattern is used to solve this problem. But, it might be use now, when the application is developed Server Side and Client Side separately.DTO is used when Server side doesn't want to pass/return Entity with annotation to Client Side.

DTO Example :

PersonEntity.java

@Entity
public class PersonEntity {
    @Id
    private String id;
    private String address;

    public PersonEntity(){

    }
    public PersonEntity(String id, String address) {
        this.id = id;
        this.address = address;
    }
    //getter and setter

}

PersonDTO.java

public class PersonDTO {
    private String id;
    private String address;

    public PersonDTO() {
    }
    public PersonDTO(String id, String address) {
        this.id = id;
        this.address = address;
    }

    //getter and setter 
}

DTOBuilder.java

public class DTOBuilder() {
    public static PersonDTO buildPersonDTO(PersonEntity person) {
        return new PersonDTO(person.getId(). person.getAddress());
    }
}

EntityBuilder.java <-- it mide be need

public class EntityBuilder() {
    public static PersonEntity buildPersonEntity(PersonDTO person) {
        return new PersonEntity(person.getId(). person.getAddress());
    }
}
share|improve this answer
Thanks for the answer.Here I dont need DTO pattern. My requirement is not to hide the annotation details from the client. So I dont need to create one more POJO in my app. My requirement is to cast the result set to qa pojo that is not an JAVA entity but simple POJO class that have same fields as result set columns. – Gunjan Shah Oct 22 '12 at 16:45

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.