nested exception is org.apache.ibatis.binding.BindingException: Invalid bound statement (not found):

最近在整合SpringBoot项目的时候出现异常如下

Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed;nested exception is org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.ckd.darrius.mapper.UserMapper.queryUserList] with root cause

经过排查发现是yaml的配置文件出错

mybatis:
  type-aliases-package: com.ckd.darrius.pojo
  mapper-locations: classPath:mybatis/mapper/*.xml
可以发现在locations中我将classpath写成了驼峰命名,导致异常

其他

在整合过程中@ResponseBody忘记加了,导致本应该返回字符串的信息出现异常,发现这个的契机在于我有将结果输出到控制台。

[THYMELEAF][http-nio-8080-exec-4] Exception processing template "queryUserList": Error resolving template [queryUserList], template might not exist or might not be accessible by any of the configured Template Resolvers
	@GetMapping("/queryUserList")
    @ResponseBody
    public List<User> queryUserList(){
        List<User> users = userMapper.queryUserList();
        System.out.println(users.toString());
        return users;
    }
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值