本文主要是介绍Caused by: com.mysql.cj.exceptions.WrongArgumentException: SQL String cannot be empty,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
报错:Caused by: com.mysql.cj.exceptions.WrongArgumentException: SQL String cannot be empty
Mapper 中代码
原因:即用①又用了②,②中没有对应的sql
@ResultMap("BaseResultMap")
@Select("select id,username,age from user where user_id=#{Id} limit 1;") ①
User findById(@Param("ethicsCommitteeId") Integer Id);xml中没写具体的sql语句
<select id="findById" resultType="com.haha.data.domain.User"> ②</select>
②</select>
这篇关于Caused by: com.mysql.cj.exceptions.WrongArgumentException: SQL String cannot be empty的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!