If you want an embedded database (H2, HSQL or Derby), please put it on the classpath.

If you want an embedded database (H2, HSQL or Derby), please put it on the classpath.

直接看错误信息:

***************************
APPLICATION FAILED TO START
***************************

Description:

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).


我是在创建cloud客户端服务时遇到的这个问题,提示也比较明显,原因是因为没有在配置文件中去配置数据库的相关配置信息,因为我搭建的客户端服务不需要配置数据库信息,但是我导了数据库的相关依赖导致的报错。直接把关于数据库相关的依赖删掉即可。

如果你是搭建的服务端那么需要在配置文件中去把关于数据库相关的配置配置全就行了。

如果两者都没有问题,那就clean、重新打包 试一下。

你可能感兴趣的:(cloud)