从N次出现

时间:2016-06-21 14:01:01

标签: java hibernate jpa querydsl

如何在查询JPA QueryDsl中使用此功能

SUBSTRING_INDEX(str,delim,count)

str出现分隔符count之前,从字符串delim返回子字符串。

更新1: 在尝试了这样的@MaciejDobrowolski解决方案之后:

QAcheteur ach = new QAcheteur("ach");
new JPAQuery(entityManager).from(ach)
 .list( Expressions.stringTemplate("SUBSTRING_INDEX({0},',',1)", ach.ancestors)  );

我收到了这个错误:

java.lang.IllegalStateException: No data type for node: org.hibernate.hql.internal.ast.tree.MethodNode 
 \-[METHOD_CALL] MethodNode: '('
    +-[METHOD_NAME] IdentNode: 'SUBSTRING_INDEX' {originalText=SUBSTRING_INDEX}
    \-[EXPR_LIST] SqlNode: 'exprList'
       +-[DOT] DotNode: 'acheteur1_.ancestors' {propertyName=ancestors,dereferenceType=PRIMITIVE,getPropertyPath=ancestors,path=ach.ancestors,tableAlias=acheteur1_,className=persistence.Acheteur,classAlias=ach}
       |  +-[ALIAS_REF] IdentNode: 'acheteur1_.ID_ACHETEUR' {alias=ach, className=persistence.Acheteur, tableAlias=acheteur1_}
       |  \-[IDENT] IdentNode: 'ancestors' {originalText=ancestors}
       +-[QUOTED_STRING] LiteralNode: '',''
       \-[NUM_INT] LiteralNode: '3'

更新2 :(解决方案) 按照@DraganBozanovic的回答我创建我的自定义方言以获得No data type for node: org.hibernate.hql.internal.ast.tree.MethodNode,因为SUBSTRING_INDEXJPA未知,所以我们使用自己的方言使其工作。

package dialect;

import org.hibernate.dialect.MySQL5Dialect;
import org.hibernate.dialect.function.StandardSQLFunction;
import org.hibernate.type.StandardBasicTypes;

public class CustomMySQLDialect extends MySQL5Dialect {

    public CustomMySQLDialect() {
        super();
        registerFunction("substring_index", new StandardSQLFunction("substring_index", StandardBasicTypes.STRING));
        registerFunction("replace", new StandardSQLFunction("replace", StandardBasicTypes.STRING));
        ....
    }
}

在JPA配置中

<bean id="entityManagerFactory" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
      ...
      ...
     <property name="jpaProperties">
         <props>
            <prop key="hibernate.dialect">dialect.CustomMySQLDialect</prop>
         </props>
      </property>
</bean>

P.S:我决定编写解决方案,因为它是两个答案的组合。

3 个答案:

答案 0 :(得分:2)

最简单的方法是使用Expressions.stringTemplate

Expressions.stringTemplate("SUBSTRING_INDEX({0},',',3)", columnPath)

更新

好的,我已经设法让它发挥作用。 我使用H2 Database,因此我使用了函数SUBSTR

QAcheteur ach = new QAcheteur("ach");
new JPASQLQuery(entityManager, new H2Templates())
        .from(ach)
        .list(Expressions.stringTemplate("SUBSTR({0}, 1, 3)", ach.ancestors));

关键是不使用JPAQuery,而是JPASQLQuery,因为此查询使用本机功能。您所要做的就是遵循this教程。

答案 1 :(得分:1)

出现例外情况:

Expressions.stringTemplate("SUBSTRING_INDEX({0},',',3)", ach.ancestors)

例外:节点

没有数据类型

SQL查询使用列名,而HQL查询使用Class属性。您从分类中选择artifact_id,但Classification类没有名为&#39; artifact_id&#39;的属性。要修复它,请在HQL中使用class属性。

SELECT artifactId FROM Classification

资源链接:

  1. No data type for node: org.hibernate.hql.internal.ast.tree.IdentNode HQL

答案 2 :(得分:1)

Hibernate方言中的

Register the custom function

{%- set minion_ips = __salt__.saltutil.runner('mine.get',
    tgt='*',
    fun='internal_ip_addrs',
    tgt_type='glob') %}

firewall:
  services:
    '4505':
      block_nomatch: False
      ips_allow:
        {%- for server, ip in minion_ips.items() %}
        - {{ ip[0] }}
        {%- endfor %}
      interfaces:
        - eth1

然后,您将能够从JPQL / HQL(以及JPA顶部的Querydsl)调用它。