最新消息: USBMI致力于为网友们分享Windows、安卓、IOS等主流手机系统相关的资讯以及评测、同时提供相关教程、应用、软件下载等服务。

Action:Consider the following: If you want an embedde ,springBoot配置数据库,补全springBoot的xml和mysql配置信息就好了

业界 admin 6浏览 0评论

        今天在敲代码时碰到了一个bug,Action:Consider the following:    If you want an embedded database (H2, HSQL or Derby), please put 

1、这个bug该怎样解决呢?首先创建一个application.properties

2、新建flie,application.properties

3、好像跟配置端口号没有联系,后来经过查询说是:从报错来看是启动时找不到数据库的url,那来调一调

4、先创建一个yml文件:注意yml文件必须带空格

5、先看一下YAML语法

6、先创建application.yml文件

7、在pom.xml文件中导入Mysql需要的依赖

        <dependency>
            <groupId>org.mybatis.spring.boot</groupId>
            <artifactId>mybatis-spring-boot-starter</artifactId>
            <version>2.2.2</version>
        </dependency>

        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>

7.1 再在application.yml将数据库的配置信息填明白他

spring:
  datasource:
    driver-class-name: com.mysql.cj.jdbc.Driver
    url: jdbc:mysql://ip+端口+库名?serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowPublicKeyRetrieval=true
    username:
    password:

8、信息补全就好了,加上依赖和yml文件的配置信息竟然就变好了,如果碰到问题,可以加一下下面的群,一起讨论

        今天在敲代码时碰到了一个bug,Action:Consider the following:    If you want an embedded database (H2, HSQL or Derby), please put 

1、这个bug该怎样解决呢?首先创建一个application.properties

2、新建flie,application.properties

3、好像跟配置端口号没有联系,后来经过查询说是:从报错来看是启动时找不到数据库的url,那来调一调

4、先创建一个yml文件:注意yml文件必须带空格

5、先看一下YAML语法

6、先创建application.yml文件

7、在pom.xml文件中导入Mysql需要的依赖

        <dependency>
            <groupId>org.mybatis.spring.boot</groupId>
            <artifactId>mybatis-spring-boot-starter</artifactId>
            <version>2.2.2</version>
        </dependency>

        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>

7.1 再在application.yml将数据库的配置信息填明白他

spring:
  datasource:
    driver-class-name: com.mysql.cj.jdbc.Driver
    url: jdbc:mysql://ip+端口+库名?serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowPublicKeyRetrieval=true
    username:
    password:

8、信息补全就好了,加上依赖和yml文件的配置信息竟然就变好了,如果碰到问题,可以加一下下面的群,一起讨论

发布评论

评论列表 (0)

  1. 暂无评论