开发者

How to select property from an entity in a hibernate relation

I have an entity class set up in Java, with a many-to-many relationship to another class. However, rather than selecting the entire entity collection, I'd like to select only a property from the child entities. The reason for doing this is that it will lower the amount of data being loaded into the system as I don't always need the entire entity depending on my view.

This is what I have so far:

@Entity
public开发者_开发百科 class Disposition {
...
    @ManyToMany
    private List<Project> projects;
...
}

This works fine and retrieves a list of Project instances. However, I don't want to get all the Projects for the Disposition; I only want to retrieve Project.name.

The only solution I've been able to come up with so far is using the @Formula annotation but I'd like to avoid this if possible since it requires writing native SQL instead of HQL.

This view is read-only so I don't expect any changes to the data to be persisted.


you can use hql to only get the child's name. It would look something like

"select p.name from Project p where p.parent_id = ?"

you would have to tailor the variable names in that, and use a parameterized query to replace the ? with the id of the parent.

It is common to have tailored DAO methods for exactly this sort of situation.


This is where object relational mapping cannot help you anymore. But you can use the Query API which allows to query arbitrary objects by HQL, not SQL. Isn't @Formula using HQL, too?


It is not Hibernate, but the ebean project could interrest you. Ebean is an ORM project using the JPA annotations and allowing the lazy (partial) loading of objects.

In your example, getting only project names would result in this code:

List<Project> projects = Ebean.find(Project.class)  
    .select("name") // Only name properties are loaded
    .where().eq("disposition", yourDisposition)  
    .findList(); 

Then, if you try to get project owner (or every other property), theses properties will be lazy loaded by Ebean.


Check out org.hibernate.criterion.Projections. Given a Criteria you can simply do the following:

criteria.setProjection(Projections.property("name"));
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜