If you wanna connect Spring boot web application then put the following code into the application.properties file. But make sure you have MySQL workbench to work with. If you are working with xampp PhpMyAdmin database then use Use this database for PhpMyAdmin
# Spring DATASOURCE (DataSourceAutoConfiguration & DataSourceProperties) spring.datasource.url=jdbc:mysql://localhost:3306/springbootcrudexample?useSSL=false&allowPublicKeyRetrieval=true spring.datasource.username=root spring.datasource.password=password spring.jpa.show-sql=true spring.thymeleaf.cache=true spring.thymeleaf.prefix=classpath:/templates spring.thymeleaf.suffix=.html spring.thymeleaf.mode=HTML5 spring.thymeleaf.encoding=UTF-8 spring.thymeleaf.servlet.content-type=text/html # Hibernate Properties #The SQL dialect makes Hibernate generate better SQL for the chosen database spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL5InnoDBDialect # Hibernate ddl auto (create, create-drop, validate, update) spring.jpa.hibernate.ddl-auto=create-drop logging.level.org.hibernate.sql=DEBUG logging.level.org.hibernate.type=TRACE server.port=9090
|
Comments
Post a Comment
Let me know your doubts