gpt4 book ai didi

java - 如何正确转换存储库 @Query 的结果?

转载 作者:行者123 更新时间:2023-12-02 11:49:09 24 4
gpt4 key购买 nike

我正在尝试这样做:

@Query(value = "SELECT * from student, class where student.class = class.id ..(and more)", nativeQuery= true)
List<MyObject> findByStudentId(@Param("studentId") long studentId);

这当前引发了转换器的异常,如下所示:

org.springframework.core.convert.ConverterNotFoundException: No converter found capable of converting from type [java.lang.Integer] to type [com.project.model.MyObject]
at org.springframework.core.convert.support.GenericConversionService.handleConverterNotFound(GenericConversionService.java:324) ~[spring-core-4.3.13.RELEASE.jar:4.3.13.RELEASE]

所以我猜一定有一个转换来实现。

当我返回一个列表时效果很好,但我返回一个对象,其中字段结果作为数组。

我想知道进行此转换以继续使用我的查询而无需修改所有内容的最佳方法是什么?

最佳答案

在这种情况下,您必须创建一个自定义界面来从查询中提取结果。假设您的查询返回 Student_id、class_id、student_name、student_class 等。您所需要的只是创建一个如下所示的界面

  interface MyCustomObject{
Long getStudentId();
Long getClassId();
String getStudentName();
String getStudentClass();
}

那么您的查询将是

@Query(value = "SELECT s.student_id, c.class_id, s.student_name, s.student_class from student s, class c where student.class = class.id ..(and more)", nativeQuery= true)
List<MyCustomObject> findByStudentId(@Param("studentId") long studentId);

我建议为这种自定义查询指定选定的列名称。

关于java - 如何正确转换存储库 @Query 的结果?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47999114/

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