小编典典

如何在没有域类的querydsl中构造查询

sql

在寻找Java库以数据库不可知的方式构建查询时,我遇到了许多信息,包括iciql,querydsl,jooq,joist,hibernate等。

我想要一些不需要配置文件并且可以使用动态架构的东西。对于我的应用程序,我在运行时了解数据库和架构,因此我没有架构的任何配置文件或域类。

这似乎是querydsl的核心目标之一,但仔细阅读querydsl的文档,我看到了很多使用域类构建动态查询的示例,但是我没有遇到任何解释如何仅使用有关架构的动态信息。

Jooq提供了这样的功能(请参阅:http :
//www.jooq.org/doc/3.2/manual/getting-started/use-cases/jooq-as-a-standalone-
sql-builder/),但如果有,则具有限制性许可我想将重点扩展到Oracle或MS
SQL(我可能不喜欢但需要支持)。

有querydsl经验的人可以让我知道用querydsl这样的事情是否可能,如果可以的话,如何做。

如果有人也知道任何其他满足我要求的东西,将不胜感激。


阅读 172

收藏
2021-04-28

共1个答案

小编典典

一个非常简单的SQL查询,例如:

@Transactional
public User findById(Long id) {
    return new SQLQuery(getConnection(), getConfiguration())
      .from(user)
      .where(user.id.eq(id))
      .singleResult(user);
}

…可以像这样动态创建(不添加任何糖):

@Transactional
public User findById(Long id) {
    Path<Object> userPath = new PathImpl<Object>(Object.class, "user");
    NumberPath<Long> idPath = Expressions.numberPath(Long.class, userPath, "id");
    StringPath usernamePath = Expressions.stringPath(userPath, "username");
    Tuple tuple = new SQLQuery(getConnection(), getConfiguration())
      .from(userPath)
      .where(idPath.eq(id))
      .singleResult(idPath, usernamePath);
    return new User(tuple.get(idPath), tuple.get(usernamePath));
}
2021-04-28