Table is not creating in MySQL server from Spring JPA
I have written the code. It goes like - Here is my GitHub Repo - https://github.com/SuvamNaskar/spring-learn.git spring.datasource.url=jdbc:mysql://${MYSQL_HOST:localhost}:2023/student?createDatabaseIfNotExist=true&useSSL=false spring.datasource.username=root spring.datasource.password=system32 spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver spring.data.jpa.repositories.enabled=true spring.jpa.show-sql=true spring.jpa.properties.hibernate.format_sql=true spring.thymeleaf.check-template-location=false spring.jpa.generate-ddl=true spring.jpa.hibernate.ddl-auto=create-drop spring.jpa.defer-datasource-initialization= true spring.jpa.open-in-view=false logging.level.org.hibernate.SQL=DEBUG logging.level.org.hibernate.type.descriptor.sql.BasicBinder=TRACE spring.jpa.hibernate.naming.physical-strategy=org.hibernate.boot.model.naming.PhysicalNamingStrategyStandardImpl This is my application.properties file. I have tried…