MyBatis / Srping-Boot Mapper方法尝试从具有原始返回类型(int)的方法中返回空值

时间:2019-07-30 08:41:38

标签: spring-boot mybatis

我正在使用 MyBatis / Spring-Boot

我正在学习:)

我收到此错误消息:

Mapper方法尝试从具有原始返回类型(int)的方法中返回null

在论坛中的不同建议的帮助下,我尝试了不同的编写方式。没有任何作用

有代码:

    @Select("INSERT INTO TB_Users(userId, firstName, lastName) VALUES( #{userId}, #{firstName}, #{lastName})")
    @SelectKey(statement = "SELECT LAST_INSERT_ID()", keyProperty = "id", before = false, resultType = Integer.class)
    public int save(UserEntity userEntity);

感谢您的帮助

0 个答案:

没有答案