前言
今天创建一个SpringBoot工程,启动时报了以下错误
Caused by: org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named ‘org.springframework.context.annotation.ConfigurationClassPostProcessor.importRegistry’ available
从字面来看是因为没有名为’org.springframework.context.annotation.ConfigurationClassPostProcessor '的bean。importRegistry”可用
原因
百度了下,说是因为Spring Boot应用中某些组件没有默认配置项,如数据库配置。
想了下,我添加了mybatis的依赖,但没有在配置文件写数据库配置。试了下把这个依赖去掉,运行成功。当然,在配置文件中加上数据库配置也可以
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>2.1.2</version>
</dependency>