微服务搭建之数据库相关

1.MySQL数据源配置

在application.yml文件中加入MySQL数据源配置

spring:
  datasource:
    url: jdbc:mysql://127.0.0.1:3306/test?characterEncoding=utf-8
    driver-class-name: com.mysql.jdbc.Driver
    username: root
    password: password

2.加入数据库相关依赖包

1.使用MySQL驱动,在pom.xml中加入MySQL的依赖


    mysql
    mysql-connector-java
    runtime

2.使用MyBatis,在pom.xml中加入MyBatis的依赖


    org.mybatis.spring.boot
    mybatis-spring-boot-starter
    RELEASE

你可能感兴趣的:(微服务搭建之数据库相关)