从N出现开始返回子字符串
如何在QueryDsl
中查询JPA中使用此函数
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_INDEX
在JPA
是未知的,所以我们使用自己的方言使其工作。
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>
PS:我决定写解决方案,因为它是两个答案的组合。
最简单的方法是使用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
作为此查询使用本地函数。 你所要做的就是遵循本教程。
由此产生的例外情况如下:
Expressions.stringTemplate("SUBSTRING_INDEX({0},',',3)", ach.ancestors)
例外:节点没有数据类型
SQL查询使用列名称,而HQL查询使用Class属性。 您正在从Classification中选择artifact_id,但Classification类没有名为“artifact_id”的属性。 要修复它,请使用HQL中的类属性。
SELECT artifactId FROM Classification
资源链接:
在Hibernate方言中注册自定义函数:
registerFunction("substring_index", new StandardSQLFunction("SUBSTRING_INDEX", StandardBasicTypes.STRING));
然后你就可以从JPQL / HQL(以及在JPA之上的Querydsl)中调用它。
链接地址: http://www.djcxy.com/p/92349.html