Failed to create query for method public abstract void com.example.newstwo.demos.dao.Newsdao.delete(java.lang.Long)! No property 'delete' found for type 'News'
时间: 2024-03-08 18:45:05 浏览: 116
这个错误提示是因为在Newsdao中定义的delete方法没有被正确实现,可能是由于方法名或参数不匹配导致的。请检查Newsdao接口中的delete方法的定义,确保方法名、参数类型和参数数量与实现类中的方法定义完全匹配。另外,也需要确保在实现类中使用了正确的注解,如@Query、@Modifying等。如果还是无法解决问题,可以将Newsdao和实现类的相关代码贴出来,以便更好地帮助您解决问题。
相关问题
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.example.demo.demos.web.Mapper.StudentMapper.updateById
这个异常通常表示在 MyBatis 中找不到指定的映射语句。在这种情况下,它指出找不到名为 "com.example.demo.demos.web.Mapper.StudentMapper.updateById" 的映射语句。
要解决这个问题,你可以按照以下步骤检查和调试:
1. 确保在 MyBatis 的配置文件中正确配置了 `StudentMapper` 接口的命名空间(namespace)。
2. 验证在 `StudentMapper.xml` 文件中是否存在与 `updateById` 对应的 `<update>` 标签。
3. 检查 `updateById` 的命名是否正确,包括大小写和拼写。
阅读全文