JDBC Configuration For MySql

application.properties for MySQL JDBC configuration:

# JDBC Configuration
spring.datasource.url=jdbc:mysql://your-database-host:your-port/your-database-name?useSSL=false&serverTimezone=UTC
spring.datasource.username=your-username
spring.datasource.password=your-password
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.datasource.hikari.maximum-pool-size=10  # Optional, to set the connection pool size
spring.datasource.hikari.minimum-idle=5  # Optional, to set the minimum idle connections
spring.datasource.hikari.idle-timeout=30000  # Optional, set timeout for idle connections in milliseconds

# JPA / Hibernate Configuration (optional, if you are using JPA)
spring.jpa.hibernate.ddl-auto=update  # Optional, to define Hibernate behavior
spring.jpa.show-sql=true  # Optional, to log SQL queries
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL5InnoDBDialect  # Dialect for MySQL DB

# Additional optional configuration
spring.datasource.initialization-mode=always  # Optional, to always initialize the database schema at startup
 

Explanation of key properties: