grails查询指定列

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了grails查询指定列相关的知识,希望对你有一定的参考价值。

grails查询指定列,且以map的形式返回结果集,有两种方式:

1、select new map(id as id,name as name) from User

2、User.createCriteria().list{

            projections{

                property("id","aliasId")

                property("name","aliasName")

            }            

    setResultTransformer(CriteriaSpecification.ALIAS_TO_ENTITY_MAP)

      }



以上是关于grails查询指定列的主要内容,如果未能解决你的问题,请参考以下文章

使用 MongoDB 在 Grails 中命名查询的列表方法中排序不区分大小写

带有片段参数的 Grails render()

Grails 命名查询

Grails 根据环境将 Service 注入到 Controller

SQL 到 HQL 查询 Grails

Grails:列转换器(如 Hibernate)