是否可以使用Oracle Text的contains语句执行JPA Criteria Query,如果是,如何执行?
答案 0 :(得分:10)
Criteria支持一个function()API,它允许按名称调用数据库函数。
qb.gt(qb.function("CONTAINS", root.get("name"), qb.parameter("name"), qb.literal(1)), 1)
EclipseLink也使用FUNC关键字在JPQL中支持此功能。
答案 1 :(得分:2)
怀疑它。 API存在于所有RDBMS中,并提供某些构造,如“LIKE”/“SUBSTRING”,当在Oracle上用于TEXT列时可以映射到该形式的某些内容,但是他们可能只使用 standard < / em> SQL。没有符合标准的方法来坚持
答案 2 :(得分:2)
我刚为openjpa编写了一个OracleTextDictionary,它将普通的'like'运算符转换为'contains'运算符,当参数以“魔法”标记为前缀时。
通过这种方式,可以将QueryDSL或Criteria Language(或JPQL)与Oracle文本一起使用。
字典在参数中使用魔术标记检测LIKE语句,并重写SQL以使用CTX CONTAINS调用。
一个缺点是分数无法以简单的方式访问,但是可以通过分数增强驾驶员的顺序。随意编辑代码: - )
我认为可以移植到hibernate,假设有一种类似的机制可以将数据库查询调优到特定的数据库。
package se.grynna.dict;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import org.apache.openjpa.jdbc.kernel.JDBCFetchConfiguration;
import org.apache.openjpa.jdbc.sql.OracleDictionary;
import org.apache.openjpa.jdbc.sql.SQLBuffer;
import org.apache.openjpa.jdbc.sql.Select;
public class OracleTextDictionary extends OracleDictionary {
public static final String CTX_MAGIC_MARKER = "@CTX@";
final static Pattern likePattern = Pattern
.compile("t(\\d+)\\.(\\S+) LIKE (\\?)");
@Override
protected SQLBuffer toSelect(SQLBuffer select,
JDBCFetchConfiguration fetch, SQLBuffer tables, SQLBuffer where,
SQLBuffer group, SQLBuffer having, SQLBuffer order,
boolean distinct, boolean forUpdate, long start, long end,Select sel) {
SQLBuffer sqlBuffer = super.toSelect(select, fetch, tables, where,
group, having, order, distinct, forUpdate, start, end, sel);
SQLBuffer tmpBuf = sqlBuffer;
String sql = tmpBuf.getSQL();
int label = 1;
for (Matcher m = likePattern.matcher(sql); m.find(); sql = tmpBuf.getSQL()) {
int argPos = m.start(3);
int argIdx = findArgIdx(sql, argPos);
Object o = tmpBuf.getParameters().get(argIdx);
if( o == null) break;
String arg = o.toString();
if (arg.startsWith(CTX_MAGIC_MARKER)) {
if (tmpBuf == sqlBuffer) {
tmpBuf = new SQLBuffer(sqlBuffer);
}
arg = arg.substring(CTX_MAGIC_MARKER.length());
setParameter(tmpBuf, argIdx, arg);
String aliasNo = m.group(1);
String colName = m.group(2);
}
String replace = String.format("(CONTAINS(t%s.%s,?,%d)>0)",
aliasNo, colName, label++);
tmpBuf.replaceSqlString(m.start(), m.end(), replace);
m.reset(tmpBuf.getSQL());
}
}
return tmpBuf;
}
@SuppressWarnings("unchecked")
private void setParameter(SQLBuffer tmpBuf, int argIdx, String arg) {
tmpBuf.getParameters().set(argIdx, arg);
}
private int findArgIdx(String sql, int argPos) {
int count = -1;
for (int i = 0; i <= argPos; i++) {
char c = sql.charAt(i);
if (c == '?') {
count++;
}
}
return count;
}
}
示例:使用以下参数调用以下(明显设计的)输入生成:
:1 "@CTX@omg near ponies"
:2 "@CTX@rainbow"
:3 "@CTX@rain%"
:4 "abc1%" <-- an ordinary like :-)
:5 "@CTX@mushroom%"
JPQL
select distinct customer
from Customer customer
where customer.custName like :a1 and customer.custName like :a2 and customer.custName like :a1 and customer.custId in (select d.custId
from Customer d
where d.custName like :a3 or d.custName like :a1)
SQL
SELECT t0.custId,
t0.custName
FROM Customer t0
WHERE ((CONTAINS(t0.custName,?,1)>1)
AND (CONTAINS(t0.custName,?,2) >1)
AND (CONTAINS(t0.custName,?,3) >1)
AND t0.custId IN
(SELECT t1.custId
FROM Customer t1
WHERE (t1.custName LIKE ? <---- the like survives....
OR (CONTAINS(t1.custName,?,1)>1))
))
AND ROWNUM <= ?
作为旁注:QueryDsl实际上有一个'contains'运算符,据说是Lucene后端,jpa和sql后端生成一个'like'语句。
我还没有找到一种重载contains运算符的方法,因此可以使用它。 (除了重写代码之外,由于我使用与WebSphere捆绑在一起的版本,因此我无法执行此操作。)
所以,我使用一个小的静态方法,使它在使用QuertyDSL时看起来很好。
// x.where(c.custName.like(CTX.contains("omg near ponies"))));
如果jpql可以为全文搜索引擎提供一些抽象(或插件),那就更好了......