Could not autowire. No beans of 'JbdcTemplate' type found.
时间: 2023-10-30 14:02:04 浏览: 91
spring mybatis 3.x 使用图文
Could not autowire. No beans of 'JdbcTemplate' type found是一个错误提示,意味着在项目中找不到名为JdbcTemplate的bean。解决这个问题的方法是在代码中添加@Autowire(required = false)注解来声明该依赖项可以是可选的,这样项目就可以成功运行并且不会报错。同时,还需要确保在项目中正确配置了JdbcTemplate的bean。希望这个解决方法对你有帮助。
阅读全文