gpt4 book ai didi

java - QueryDSL 简单查询不会转换为对象

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:32:49 26 4
gpt4 key购买 nike

我正在针对 MySql 中的 World 数据库测试 QueryDSL。我可以将数据作为列表检索,但无法将其作为列表返回。我正在通过 SQL 查询,仅此而已。这就是我的。

private void getSomething(Connection connection) {
QCountry country = QCountry.country;
SQLTemplates dialect = new HSQLDBTemplates();
SQLQuery query = new SQLQueryImpl(connection, dialect);

//List<Object[]> countries = query.from(country).list(country.all());
List<QCountry> countries = query.from(country).list(country);

System.out.println(countries);
try {
connection.close();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}

我得到这个错误:java.lang.IllegalArgumentException:基于 RelationalPath 的投影只能用于生成的 Bean 类型

最佳答案

您需要按照此处所述生成 bean 类型 http://blog.mysema.com/2011/01/querying-in-sql-with-querydsl.htmlBean 类生成 下。

关于java - QueryDSL 简单查询不会转换为对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11906771/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com