如何从 querydsl 获取完全具体化的查询
我正在尝试使用 querydsl 为动态架构构建动态查询。我试图只获取查询,而不必实际执行它。
到目前为止,我遇到了两个问题: - schema.table表示法不存在。相反,我只得到表名。- 我已经能够获得查询,但它分离出变量并放置“?”,这是可以理解的。但是我想知道是否有某种方法可以获得完全具体化的查询,包括参数。
这是我当前的尝试和结果(我正在使用MySQLTemplates创建配置):
private SQLTemplates templates = new MySQLTemplates();
private Configuration configuration = new Configuration(templates);
String table = "sometable"
Path<Object> userPath = new PathImpl<Object>(Object.class, table);
StringPath usernamePath = Expressions.stringPath(userPath, "username");
NumberPath<Long> idPath = Expressions.numberPath(Long.class, userPath, "id");
SQLQuery sqlQuery = new SQLQuery(connection, configuration)
.from(userPath).where(idPath.eq(1l)).limit(10);
String query = sqlQuery.getSQL(usernamePath).getSQL();
return query;
我得到的是:
select sometable.username
from sometable
where sometable.id = ?
limit ?
我想得到的是:
select sometable.username
from someschema.sometable
where sometable.id = ?
limit ?
更新:我想出了这种技巧来使参数具体化(不理想,希望有更好的解决方案),但仍然无法使Schema.Table表示法起作用:
黑客紧随其后。请建议更干净的QueryDsl方法:
String query = cleanQuery(sqlQuery.getSQL(usernamePath));
private String cleanQuery(SQLBindings bindings){
String query = bindings.getSQL();
for (Object binding : bindings.getBindings()) {
query = query.replaceFirst("\\?", binding.toString());
}
return query;
}