Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: org.apache.ibatis.binding.BindingException: Mapper method 'com.example.demo.mapper.Attendentmapper.insert' attempted to return null from a method with a primitive return type (int).] with root cause
时间: 2023-06-28 19:10:12 浏览: 116
servlet.rar
这个错误是因为你的 Mapper 中的 insert 方法返回了 null,但是它的返回类型是 int(原始数据类型),这是不允许的。你需要确保 insert 方法返回一个非 null 的 Integer 值,或者将其返回类型改为 Integer 对象类型,这样可以允许返回 null 值。你也可以检查一下你的 Mapper XML 文件,确保 insert 语句执行后返回了一个正确的值。
阅读全文