zoukankan      html  css  js  c++  java
  • If you want an embedded database (H2, HSQL or Derby), please put it on the classpath.

    Description:
     
    Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured.
    //无法配置数据库,没有指定url属性,并且无法配置embedded datasource
    Reason: Failed to determine a suitable driver class
    //原因:无法明确指定正确的驱动类(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

    按照上述的解决办法:)

    程序入口处:
     
    @SpringBootApplication
    public class DemoApplication {
     
    修改为:
    @SpringBootApplication(exclude = DataSourceAutoConfiguration.class)
    public class DemoApplication {
    }
  • 相关阅读:
    虚拟机vmware的连接方式以及IP端口,协议等概念
    python3爬虫--shell命令的使用和firefox firebug获取目标信息的xpath
    numpy的基本用法
    scrapy模拟请求头
    (1)python Scrapy爬虫框架
    flutter ui
    dart 类
    dart 基础
    黑苹果镜像下载地址
    android9.0请求异常
  • 原文地址:https://www.cnblogs.com/qingmuchuanqi48/p/11531459.html
Copyright © 2011-2022 走看看