日常错误(springBoot集成mybatis时返回错误has an unsupported return type)

springBoot集成mybatis时返回错误has an unsupported return type

mybatismapper文件里的insert,update,delete,返回的类型为实体类Student

测试代码

日常错误(springBoot集成mybatis时返回错误has an unsupported return type)_第1张图片

sql代码

日常错误(springBoot集成mybatis时返回错误has an unsupported return type)_第2张图片

错误显示

日常错误(springBoot集成mybatis时返回错误has an unsupported return type)_第3张图片

处理办法:mapper文件中的update,delete,insert语句是不需要设置返回类型的,它们都是默认返回一个int ,所以把返回值类型改成 int

日常错误(springBoot集成mybatis时返回错误has an unsupported return type)_第4张图片

你可能感兴趣的:(spring,boot,java,intellij-idea)