- Hands-On Spring Security 5 for Reactive Applications
- Tomcy John
- 31字
- 2021-07-23 18:59:21
Step 4—Setting up MySQL database properties in your project
Create a file named mysqldb.properties in the src/main/resources folder with the following content:
mysql.driver=com.mysql.cj.jdbc.Driver
mysql.jdbcUrl=jdbc:mysql://localhost:3306/spring_security_schema?useSSL=false
mysql.username=root
mysql.password=<your-db-password>