Springboot

 
Welcome to 

                                             

Boot World

To make the best performance in the market, you must have the best skills in enterprise application development. In my opinion, Java is best for Enterprise Application development

PreReq:   

 Java Advance with Data Structures and Algorithms

    HTML basics

    Javascript Advance for a full stack development

    SQL good command 

Step1: Tools required for Spring boot

Make Project using https://start.spring.io


properties for MySQL Community server


Configure Property file

 # Spring DATASOURCE (DataSourceAutoConfiguration & DataSourceProperties)

spring.datasource.url=jdbc:mysql://localhost:3306/db_name?useSSL=false&allowPublicKeyRetrieval=true
spring.datasource.username=root
spring.datasource.password=password
spring.jpa.show-sql=true
# 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=update
logging.level.org.hibernate.sql=DEBUG
logging.level.org.hibernate.type=TRACE
server.port=9090






One to One Mapping in Spring boot Jpa Hibernate

One to Many and Many to One Mapping in Spring boot Jpa Hibernate

 Many to Many Mapping in Springboot


Comments

Popular Posts