后台开发不可避免的要使用到数据库,现在市场上主要有MySQL、SQL Server及Oracle等,本文主要介绍了在SpringBoot中如何集成MySQL数据库。
mysql的安装
MySQL是开源免费的,最新版的下载地址为:Download
安装过程蛮简单的,一路next,MySQL推荐的配置已经很好了。如果想要自定义安装过程,可以在下图中点击Custom进行自定义。
MySQL安装完成之后,需要给root用户设置密码,这里密码设置完成之后,务必牢记,后续使用root用户访问MySQL服务时必须使用该密码。
配置MySQL命令到PATH路径之后,访问MySQL的时候就可以在任意命令行窗口上执行mysql -u root -p命令连接数据库服务。
mysql -u root -p
按回车确认, 如果安装正确且 MySQL 正在运行, 会得到以下响应:
Enter password:
输入密码即可连上数据库。
数据库相关命令:
查看默认数据库:show databases;
选择mysql数据库:use mysql
查看默认MySQL用户:select host, user, authentication_string, plugin from user;
SpringBoot机集MySQL
1.添加依赖
<dependencies>
...
<!-- mysql数据库配置 -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
...
</dependencies>
2.添加配置信息
#数据库连接配置信息
spring.datasource.username = your username
spring.datasource.password = your password
spring.datasource.url = jdbc:mysql://localhost:3306/shop?useUnicode=true&characterEncoding=utf-8&serverTimezone=GMT%2B8
spring.datasource.driverClassName = com.mysql.cj.jdbc.Driver
SpringBoot升级到2.0后在数据库后面参数需要带上时区,如:serverTimezone=GMT%2B8,表示时区为东8区。