注意:使用idea创建maven项目时,配置好数据库信息,就必须使用,否则报错。
如下:
Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. Reason: Failed to determine a suitable driver class
Action:
Consider the following:
If you want an embedded database (H2, HSQL or Derby), please put it on the classpath.
If you have database settings to be loaded from a particular profile you may need to activate it (no profiles are currently active).

解决方法:
将
@SpringBootApplication
替换成
@SpringBootApplication(exclude= {DataSourceAutoConfiguration.class})


2918

被折叠的 条评论
为什么被折叠?



