Hands-On Spring Security 5 for Reactive Applications
上QQ阅读APP看书,第一时间看更新

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>