org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'mpAccountController': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'mpAccountServiceImpl': Invocation of init method failed; nested exception is org.springframework.jdbc.BadSqlGrammarException: 是什么意思
时间: 2023-08-27 10:21:56 浏览: 195
测试spring中的org.springframework.beans.factory.InitializingBean
这个错误信息表明在创建名为 "mpAccountController" 的 bean 时,依赖注入失败了。具体地,是在初始化名为 "mpAccountServiceImpl" 的 bean 时出现了问题,导致依赖注入失败。其根本原因是在执行初始化方法时发现了一个 SQL 语法错误,可能是因为 SQL 语句中存在语法错误或表不存在等问题。
简而言之,很可能是在执行 SQL 语句时发生了错误,需要检查 SQL 语句是否正确,或者检查数据库中是否存在相应的表。
阅读全文