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

***************************
APPLICATION FAILED TO START
***************************
Description:
Failed to auto-configure a DataSource: 'spring.datasource.url' is not specified and no embedded datasource could be auto-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).

Process finished with exit code 1

在使用IDEA整合spring cloud项目时,为了测试负载均衡及提供者与使用者通信是否能够成功的时,所以先创建了一个提供者producer1,并且整合了mybatis和druid,测试成功后,直接复制了producer1粘贴了一个producer2出来,然后改了下项目名和pom的项目名后,当我要测试FeignClient的负载均衡时,启动producer2时,发现注册中心,producer2没有注册进去,在仔细看日志,发现出现了如上错误。奇怪,一模一样的 咋就出现差异了??,顺便对比了下modules里producer1、producer2的spring配置,乍一看 没错,准备关掉的时候,发现突然发现不一样:如下:
If you want an embedded database (H2, HSQL or Derby), please put it on the classpath_第1张图片
突然发现producer2下面没有这个,这丫不是更本没找到配置文件嘛··。
然后就发现我的resource文件夹idea没有标示为resource特有的文件夹 ,尴尬。在选中resource右键make directory as =>resource后,在启动就可以了,这只是其中一种解决办法哈,顺便贴个别人的 这里供参考。
另外注意spring boot 配置文件在resource设置正确的情况下,会显示成绿色树叶的图标。这样,主要还是之前没有特别留意到这个配置没有变成这种图标。
在这里插入图片描述
顺便在贴一个我的pom配置,并没有注释掉pom里的东西,也没有在启动类上加东西。
解决的话 留下赞?


        1.8
        Greenwich.SR1
    
    
    
        
            org.springframework.boot
            spring-boot-starter-test
            test
        
        
            org.springframework.cloud
            spring-cloud-starter-netflix-eureka-server
        
        
            org.springframework.boot
            spring-boot-autoconfigure
        
        
            org.springframework.cloud
            spring-cloud-commons
            RELEASE
        
        
            org.springframework.boot
            spring-boot-starter-web
        
        
        
        
            mysql
            mysql-connector-java
            8.0.15
        
        
        
            com.alibaba
            druid 
            1.1.10
        
        
            org.mybatis
            mybatis-spring
            2.0.0
            compile
        
        
            org.mybatis.spring.boot
            mybatis-spring-boot-starter
            2.0.0
        

你可能感兴趣的:(java)