Error starting ApplicationContext. To display the conditions report re-run your...

当出现这种情况 ,而且最下面篮字报的是dataSource
可能是自动配置的数据库,以下方法可能会有用
1.启动类的@EnableAutoConfiguration或@SpringBootApplication中添加(exclude = {DataSourceAutoConfiguration.class})或者(exclude =DataSourceAutoConfiguration.class,HibernateJpaAutoConfiguration.class}),排除此类的autoconfig
2.去掉导入的包:import org.springframework..annotation.
3.如果是springmvc项目,需要在配置文件中配置MultipartFile
在这里插入图片描述

你可能感兴趣的:(异常,java)