Connect to the MySQL Database
Learn how to connect the REST API application to the MySQL database.
We'll cover the following...
Introduction
The storage used so far is not persistent, and the authentication feature has not been available. Let’s replace it with persistent storage using the MySQL database and add the authentication feature using the JSON Web Tokens (JWT) mechanism.
Before implementing those features, some additional libraries are added:
Before implementing those features, some additional libraries are added:
- GORM: For object-relational mapping mechanism to the relational database.
- GoDotEnv: For reading
.env
files. - JWT: For authentication mechanism.
- Bcrypt: For password encryption.
We need to install these additional libraries with the following commands when running it independently. However, it has already been set up for you on the Educative platform.
We install the GORM library and its driver to perform query operations with the relational database.
go get -u
...