spring启动报错

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 (the profiles "dev,redis,config,mongodb,activemq,socketio" are currently active).

 

在启动类的@EnableAutoConfiguration或@SpringBootApplication中添加exclude = {DataSourceAutoConfiguration.class}。

即:@EnableAutoConfiguration(exclude = {DataSourceAutoConfiguration.class})

posted @ 2019-03-12 14:35  StingLon  阅读(212)  评论(0编辑  收藏  举报