spring boot 启动出错

Error starting ApplicationContext. To display the auto-configuration report re-run your application with 'debug' enabled.2018-07-15 15:30:33.555 ERROR 2616 --- [           main] o.s.b.d.LoggingFailureAnalysisReporter   : 

***************************
APPLICATION FAILED TO START
***************************
Description:
Cannot determine embedded database driver class for database type NONE
Action:
If you want an embedded database please put a supported one on the classpath. If you have database settings to be loaded from a particular profile you may need to active it (no profiles are currently active).

Process finished with exit code 1


spring boot 启动出错_第1张图片




方法一:

@SpringBootApplication(exclude={DataSourceAutoConfiguration.class,HibernateJpaAutoConfiguration.class})


方法二:

错误提示 没有连接数据库

连一个数据库就可以了

你可能感兴趣的:(Spring,Boot)