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
- Get Free IntelliJ free Version
- Postman Client to test APIs
- Java 1.8, 11, 12, 13 can be used
- MySQL, PostgreSQL, SQL, etc
Make Project using https://start.spring.io
properties for MySQL Community server
# 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 |
Comments
Post a Comment
Let me know your doubts