报错: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>