Spring Boot blog API application.
- User Login / Signup
- Create Blog / post
- CRUD Operation on POST
- Comment on post
- CRUD Operation on comment
- Pagination _ Search By USER
- Search By Category
- Sorting
- Stored Data in MySQL
- Authentication of Login
- Input Validation
- Server side pagination
- Before running the API server, we should update the database config inside the application.properties file.
- Update the port number, username and password as per our local database config.
- server.port=8888
- spring.datasource.url=jdbc:mysql://localhost:3306/blogapi
- spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
- spring.datasource.username=root
- spring.datasource.password=root
- Java
- Spring Data JPA
- Spring Boot
- Hibernate
- MySQL
Footer © 2022 GitHub, Inc. Footer navigation Terms Privacy Security Status Docs Contact GitHub Pricing API Training Blog About