JPA2 Criteria API 中 Hibernate 的 Restrictions.sqlRestriction 的等价物?

发布于 2024-10-20 10:10:00 字数 323 浏览 1 评论 0 原文

是否有相当于 Hibernate 的 Restrictions.sqlRestriction

另外,如果没有等效的,我很想知道是否可以“破解”Hibernate JPA2 支持中的某些内容以在查询中插入我自己的 SQL 片段。

Is there an equivalent of Hibernate's Restrictions.sqlRestriction for JPA2 Criteria API ?

Also, if there is no equivalent, I'd be interested to know if it's possible to "hack" something in Hibernate's JPA2 support to insert my own SQL snippets in the query.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

雨后彩虹 2024-10-27 10:10:00

JPA2 中没有这样的选项(至少我知道)。您不能将 Criteria API 与本机 SQL(或与此相关的 JPAQL)混合使用。在 JPA2 中最接近的事情是进行本机 SQL 查询,并声明响应应编组到哪个实体类,从而使您能够有效地发出详细的 SQL 请求,但仍可从 ORM 功能中受益:

http://www.java2s.com/Code/Java/JPA/UsingNamedNativeQuery.htm

There's no such option in JPA2 (at least that I know of). You can't mix Criteria API with native SQL (or with JPAQL for that matter). The closest thing you get in JPA2 is making a native SQL query, and declaring to what Entity class(es) the response should be marshalled to, giving you effectively the posibility to make detailed SQL requests but still profit from ORM features:

http://www.java2s.com/Code/Java/JPA/UsingNamedNativeQuery.htm

静谧幽蓝 2024-10-27 10:10:00

我终于找到了一种使用 JPA 函数来做到这一点的方法。这是 hibernate 6 特有的,用于获取要渲染的不带括号的函数的 SQL。在这种情况下,本机 SQL 需要返回 ID 列表。

    public Expression createIdListFunction( CriteriaBuilder cb, String nativeQuery )
    {
            Expression exp = cb.function( nativeQuery, Long.class );
            SelfRenderingSqmFunction sexp = (SelfRenderingSqmFunction) exp;
            SqmFunctionDescriptor sdesc = sexp.getFunctionDescriptor();
            FieldUtils.setProtectedFieldValue( "useParenthesesWhenNoArgs", sdesc, false );
            return exp;
    }

    CriteriaBuilder cb = getCurrentSession( ).getCriteriaBuilder( );
            CriteriaQuery<Login> criteriaQuery = cb.createQuery( Login.class );
            Root<Login> root = criteriaQuery.from( Login.class );
            List<Predicate> expressions = new ArrayList<>( );
            expressions.add( root.get( "id" ).in( this.createIdListFunction( cb, "SELECT id FROM LOGIN" ) ) );
            criteriaQuery.select( root ).where( expressions.toArray( new Predicate[ 0 ] ) );

I have finally found a way to do this using JPA functions. This is hibernate 6 specific to get the SQL of the function to render without parentheses. In this case, the native SQL needs to return a list of IDs.

    public Expression createIdListFunction( CriteriaBuilder cb, String nativeQuery )
    {
            Expression exp = cb.function( nativeQuery, Long.class );
            SelfRenderingSqmFunction sexp = (SelfRenderingSqmFunction) exp;
            SqmFunctionDescriptor sdesc = sexp.getFunctionDescriptor();
            FieldUtils.setProtectedFieldValue( "useParenthesesWhenNoArgs", sdesc, false );
            return exp;
    }

    CriteriaBuilder cb = getCurrentSession( ).getCriteriaBuilder( );
            CriteriaQuery<Login> criteriaQuery = cb.createQuery( Login.class );
            Root<Login> root = criteriaQuery.from( Login.class );
            List<Predicate> expressions = new ArrayList<>( );
            expressions.add( root.get( "id" ).in( this.createIdListFunction( cb, "SELECT id FROM LOGIN" ) ) );
            criteriaQuery.select( root ).where( expressions.toArray( new Predicate[ 0 ] ) );
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文