ssm整合mybatis出现Invalid bound statement (not found): com.gao.dao.AccountDao.insert的错误提示

  • 在ssm整合中mybatis出现以下的提示错误

org.springframework.web.util.NestedServletException: Request processing failed; nested exception is org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.gao.dao.AccountDao.insert

  • 错误的原因是:由于代码是自动升车改的,mapper下的xml文件在整合mybatis时配置文件没有被加载
  • 解决办法是:在spring 整合mybatis的配置中把生成的xml文件配置到mybatis中,配置的结果图如下

ssm整合mybatis出现Invalid bound statement (not found): com.gao.dao.AccountDao.insert的错误提示_第1张图片

你可能感兴趣的:(java项目遇到的错误和问题)