我正在尝试使用不生成代码的JOOQ。我有一个像这样的dao类
public class FilesDao {
public List<FilePojo> getAllFiles() {
DataSource dataSource = DataSourceFactory.getTestiDataSource();
List<FilePojo> filePojos = new ArrayList<>();
try (Connection con = dataSource.getConnection()) {
DSLContext create = DSL.using(con, SQLDialect.MARIADB);
filePojos = create.select(field("tiedosto.id"), field("tiedosto.nimi"), field("tiedosto.koko_tavua"),
field("tiedosto.sisalto"), field("tiedosto.hlo_id"))
.from(table("tiedosto"))
.where(field("minioupload").eq((byte) 0))
.fetch().into(FilePojo.class);
} catch (SQLException e) {
e.printStackTrace();
}
return filePojos;
}
}
和一个看起来像这样的Pojo类
import javax.persistence.Column;
import javax.persistence.Table;
@Table(name="tiedosto")
public class FilePojo {
@Column(name = "id")
private Integer id;
@Column(name = "hlo_id")
private Integer customerId;
@Column(name = "koko_tavua")
private Integer fileSize;
@Column(name = "nimi")
private String fileName;
@Column(name = "sisalto")
private byte[] content;}
//Getters setters omitted
当我尝试使用像这样的主要方法从表中读取数据时
public class App {
public static void main(String[] args) {
FilesDao mydao = new FilesDao();
List<FilePojo> myList = mydao.getAllFiles();
for (FilePojo filePojo : myList) {
System.out.println("==========================================" + "\n" +
filePojo.getId() + " " +
filePojo.getCustomerId() + " " +
filePojo.getFileName() + " " +
filePojo.getFileSize() + " " +
filePojo.getContent() + " " +
"==========================================");
}
}
}
我可以看到SQL查询运行良好并列出了所有匹配的行,但是pojo返回的是空值。我在这里做错了什么?有人可以指出我正确的方向吗?我真的很感谢任何帮助。
答案 0 :(得分:1)
我不确定这是否是bug or a feature。当您可能应该使用plain SQL templating API时,您正在使用identifier building API。当你写
Transition Rejection($id: 4 type: 6, message: The transition errored, detail: Error: An error occured, Error: Loading chunk 14 failed.
(error: admin.reports.module.8fc31757.chunk.js))
然后,jOOQ(可能错误地)认为您的列名为field("tiedosto.id")
,名称中带有句点。何时应将其真正限定为`tiedosto.id`
。有一些可能的解决方法:
但是,不要限定名称:
`tiedosto`.`id`
field("id")
当然,这应该始终是您的首选。