在使用jpa时经常需要自定义查询.@query这个用的挺多的.
最近多表查询中返回一个自定义对象.
记录如下
@Query("select new xx.xxx.xxx.xxx.xxxx(a.xx,sa.xx,ss.xx) from table a,table sa,table ss where a.xx= sa.xx and a.xx= ss.xx and ss.xx= ?1 order by ?#{#pageable} ")
在使用jpa时经常需要自定义查询.@query这个用的挺多的.
最近多表查询中返回一个自定义对象.
记录如下
@Query("select new xx.xxx.xxx.xxx.xxxx(a.xx,sa.xx,ss.xx) from table a,table sa,table ss where a.xx= sa.xx and a.xx= ss.xx and ss.xx= ?1 order by ?#{#pageable} ")