gpt4 book ai didi

mysql - 来自查询的响应无法映射到 pojo 类 spring boot

转载 作者:太空宇宙 更新时间:2023-11-03 10:32:10 24 4
gpt4 key购买 nike

查询的每个响应都应映射到一个 poja 类。

我写了一个原生查询

@Query(value="SELECT new QuestionJsonTotalAnswer(q.question) FROM mydb.question q", nativeQuery=true)
List<QuestionJsonTotalAnswer> showAnswersOfQuestions();

转换器类

public class QuestionJsonTotalAnswer {
String question;
// constructors, getters and setters
}

但错误是:

You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '(q.question) FROM mydb.question q' at line 1

在 application.properties 中

spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver

注意:当我通过 List<Object> 获得响应时,它在没有 pojo 类的情况下工作正常.但是我需要通过 pojo 类来避免嵌套数组。

最佳答案

你需要像这样使用投影。

@Query(value="SELECT q.question FROM mydb.question q", nativeQuery=true)
List<QuestionJsonTotalAnswer> showAnswersOfQuestions();

public interface QuestionJsonTotalAnswer {
String getQuestion();
}

关于mysql - 来自查询的响应无法映射到 pojo 类 spring boot,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56055086/

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