org.apache.ibatis.binding.BindingException

org.apache.ibatis.binding.BindingException: Mapper method ‘com.cfsm.test.dao.TestSimpleDao.save’ has an unsupported return type: class com.cfsm.test.model.TestSimple

原因:
因为mybatis会扫描Dao接口类,接口类执行xml文件配置的insert方法,只能返回ID主键数字,不能返回java实体类。
spring mvc不会扫描接口类,只扫描带有@Repository注解的Dao实现类。
解决方法:
把TestSimpleDao.java接口的方法
public TestSimple save(TestSimple testSimple);
改成
public Integer save(TestSimple testSimple);

上一篇:android-----实现不两个不同的activity的跳转和数据传递


下一篇:【毕设日记】(3)go语言基于gopacket+fyne简单抓包工具实现之GUI