can I perform a query inside of JPA entity to get back a single column

China☆狼群 提交于 2019-12-20 05:22:14

问题


I have a dumb question. It would be great if this could be done, but I am not holding my breath.

I need a single column from a table linked to my JPA entity to be a collection in said JPA entity. Is there any way, that I can just get back that column alone that is related to that entity, instead of having to get back an entire table (which could be very costly?)

Can I perform a query inside that JPA entity that will be performed and loaded eagerly into a collection?

I am trying to avoid having to make several calls to the database by just executing a couple of queries.

What are your thoughts on this?


回答1:


@ElementCollection(fetch=FetchType.EAGER)
        @CollectionTable(name="QUICK_LAUNCH_DISTLIST",joinColumns=@JoinColumn(name="QUICK_LAUNCH_ID"))
        @Column(name="LIST_ID")
private List<Long> distListIDs;

The ElementCollection attribute is what I was looking for. It seems to work pretty well in addition to that.

Thanks for the help and inspiration guys.




回答2:


Suppose a Category has many products:

select product.name from Category c inner join c.products product where ...

If that's not what you want, please show an example in your question.



来源:https://stackoverflow.com/questions/10451022/can-i-perform-a-query-inside-of-jpa-entity-to-get-back-a-single-column

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!