Spring Boot – CRUD Operation with JPA Repository
In this chapter, we are going to learn how to make CRUD operation using JPA repository. As mentioned before, the repository provides methods to perform …
In this chapter, we are going to learn how to make CRUD operation using JPA repository. As mentioned before, the repository provides methods to perform …
In this chapter, we would add a Spring Data JPA repository to our application. What is a JPA repository Configure the Entity Create the …
In this Chapter, we would learn about the Spring Data JPA. Overview of Spring Data JPA What we would do Add Dependencies Create the …
In this chapter, we would write the DELETE methods. It is similar to the GET method. However, in case of he DELETE, the nothing is …
In this chapter, we are going to write the Update Methods (PUT) to update records. So this follows from the same procedure as with the …
In this lesson we would write the post methods. This method would lets use insert new records. For example, create new user, new location and …
In this chapter, we are going to write the methods to get resources by Id. Remember that in the previous chapter(Write GET Methods), we wrote …
We would learn about how to use the business services we created previously. We actually will move the logic from the controller to the business …
In this lesson, we are going to write the GET methods to get list of items. So we would write methods to return list of …
In this lesson, we are going to add REST controllers to our application. Remember that in the last tutorial, we added a business service. Now …