在Spring Boot中创建自定义查询时出错

在Spring Boot中创建自定义查询时出错,第1张

在Spring Boot中创建自定义查询出错

您已经编写了

native
查询,因此,尝试将nativeQuery传递为true

@Query("select id, x, y from test where x = :x", nativeQuery = true)

或者你可以写

HQL
查询

@Query("SELECt t.id, t.x, t.y FROM Test t where t.x = :x")

请参考此链接以获取更多信息。https://docs.spring.io/spring-
data/jpa/docs/current/reference/html/#jpa.query-methods.at-
query



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4943886.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-13
下一篇 2022-11-13

发表评论

登录后才能评论

评论列表(0条)

保存