ERROR o.s.b.SpringApplication - [reportFailure,826] - Application run failed org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysConfigController': Unsatisfied dependency expressed through field 'configService'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sysConfigServiceImpl': Invocation of init method failed; nested exception is org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.PersistenceException:
时间: 2024-02-13 11:24:19 浏览: 249
spring-beans-5.1.3.RELEASE-javadoc.jar
这个错误信息显示了一个依赖注入的问题,具体是在名为 'sysConfigController' 的 bean 创建时发生了错误。它的一个字段 'configService' 的依赖无法满足,导致出现了 UnsatisfiedDependencyException 异常。
进一步查看异常信息,发现 'sysConfigServiceImpl' bean 的创建也失败了。在初始化方法调用时发生了异常。而这个异常是 MyBatisSystemException 的一个嵌套异常,原因是 org.apache.ibatis.exceptions.PersistenceException 异常。
根据这些信息,可以推测问题可能出现在 MyBatis 配置或者数据访问层的代码中。需要查看详细的堆栈跟踪信息以及相关的配置和代码,以便更好地定位和解决问题。
阅读全文