Spring Boot Day 17Today I learned that in a Spring Boot REST API, you can nest custom data types to represent complex or hierarchical data structures. By creating Java classes to define these custom types, you can easily organize and encapsulate your data, making your...Jul 27, 2023·1 min read
Spring Boot Day 12Spring Boot POST Mapping. Today, I had a productive learning session where I focused on understanding the concept of "Post Mapping" in Spring Boot. Post Mapping is an essential aspect of handling HTTP POST requests in web applications using Spring Bo...Jul 20, 2023·1 min read
Spring Boot Day 11Today on the 11th day of learning spring boot I learned about the creation of rest API using Spring Boot. Creating a REST API using Spring Boot is a popular approach in Java-based web development. Spring Boot simplifies the process of building and de...Jul 18, 2023·2 min read
Spring Boot Day 10On the 10th day of Spring Boot learning, I discovered the magic of Spring Boot DevTools, a powerful developer tool aimed at improving development efficiency when working with Spring Boot applications. The name "DevTools" itself stands for Developer T...Jul 17, 2023·3 min read
Spring Boot Day 9On the 9th day of spring boot learning, I learned about the fundamentals of API and REST also methods of HTTP along with standard status code: an API (Application Programming Interface) is like a waiter that takes your request, communicates with a se...Jul 15, 2023·2 min read
Spring Boot Day 8Today on the 8th day of spring boot I learned about the Crud operation using JPA and Spring Boot. C - Create R - Read U - Update D - Delete To perform CRUD (Create, Read, Update, Delete) operations using JPA (Java Persistence API) and Spring Boot, yo...Jul 14, 2023·3 min read
Spring Boot Day 7On the 7th day of learning Spring Boot, I learned about configuring the database. I started by creating a Spring Boot starter project and then added two dependencies: "spring data jpa" and "MySQL connector". Next, I created a user entity with private...Jul 13, 2023·1 min read