Spring boot 使用mysql

** 开发阶段用 H2即可,上线时,通过以下配置切换到mysql,spring boot将使用这个配置覆盖默认的H2。**

  1. 建立数据库:
mysql -u root
CREATE DATABASE springbootdb
  1. pom.xml:

            mysql
            mysql-connector-java
        
  1. application.properties:
spring.datasource.url= jdbc:mysql://localhost:3306/springbootdb
spring.datasource.username=root
spring.datasource.password=
spring.jpa.hibernate.ddl-auto=create-drop//none, validate, update, create-drop

你可能感兴趣的:(Spring boot 使用mysql)