实力踩坑:Failed to configure a DataSource: ‘url‘ attribute is not specified and no embedde

Posted 一宿君

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了实力踩坑:Failed to configure a DataSource: ‘url‘ attribute is not specified and no embedde相关的知识,希望对你有一定的参考价值。

实力踩坑 Failed to configure a DataSource: 'url' attribute is not specified and no embedde

1、异常错误日志

Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured.

翻译就是:无法配置DataSource:未指定'url'属性,也无法配置嵌入数据源。

2、分析原因解决

问题原因: Mybatis没有找到合适的加载类,其实是大部分spring-datasource-url没有加载成功,分析原因如下所示:

  • 在没有用到数据库的场景下,DataSourceAutoConfiguration会自动加寻找资源

  • spring-datasource-url没有配置属性值

  • spring-datasource-url配置的地址格式有问题

  • spring-datasource-url配置的文件没有加载

解决方案如下:

方案1(此方案是在没有用到数据库的场景下使用)

  • 排除此类的autoconfig。启动以后就可以正常运行。
    @SpringBootApplication(exclude= DataSourceAutoConfiguration.class)
    

方案2

  • 在application.properties或者application.yml文件中没有添加数据库配置信息.
    spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
    spring.datasource.url=jdbc:mysql://localhost:3306/compass?useUnicode=true&characterEncoding=utf8
    spring.datasource.username=root
    spring.datasource.password=root
    

方案3

  • 在spring xml配置文件中引用了数据库地址 所以需要对冒号:等特殊字符进行转义处理.但是在application.properties/或者application.yml文件并不需要转义,错误和正确方法写在下面了。

    //错误示例
    spring.datasource.url = jdbc:mysql\\://localhost\\:1504/f_me?setUnicode=true&characterEncoding=utf8
    
    //正确示例
    spring.datasource.url = jdbc:mysql://localhost:1504/f_me?setUnicode=true&characterEncoding=utf8
    

方案4

  • yml或者properties文件没有被扫描到,需要在pom文件中添加如下,来保证文件都能正常被扫描到并且加载成功。

    <!-- 如果不添加此节点mybatis的mapper.xml文件都会被漏掉。 -->
    <resources>
        <resource>
            <directory>src/main/java</directory>
            <includes>
                <include>**/*.yml</include>
                <include>**/*.properties</include>
                <include>**/*.xml</include>
            </includes>
            <filtering>false</filtering>
        </resource>
        <resource>
            <directory>src/main/resources</directory>
            <includes>
                <include>**/*.yml</include>
                <include>**/*.properties</include>
                <include>**/*.xml</include>
            </includes>
            <filtering>false</filtering>
        </resource>
    </resources>
    

上述根据自己情况而定,重新启动基本就没啥问题了!!!

以上是关于实力踩坑:Failed to configure a DataSource: ‘url‘ attribute is not specified and no embedde的主要内容,如果未能解决你的问题,请参考以下文章

安装Intel HAXM:"failed to configure driver unknown error. failed to open driver"

Android踩坑篇 Failed to open zip file 解决办法

Ruby 踩坑 “Failed to build gem native extension”

python踩坑日记:ImportError: numpy.core.multiarray failed to import

Failed to configure a DataSource

Unable to load configuration.