@RequestMapping is one of the most common annotation used in Spring Web applications. This annotation maps HTTP requests to handler methods of MVC and REST controllers.
The @RequestMapping annotation can be applied to class-level and/or method-level in a controller.
You can have multiple request mappings for a method. For that add one @RequestMapping annotation with a list of values.
There are many applications to use RequestMapping
form more example visit this site resources
JPA is a specification. It is a collection of classes and methods to persistently store the vast amounts of data into a database.
JPA is an abbreviation that stands for Java Persistence API. It’s a specification which is part of Java EE and defines an API for object-relational mappings and for managing persistent objects.
There are many applications to JPA
form more example visit this site resources
there is different kinds of Spring Data repository interfaces and their functionality :
CrudRepository
the typical CRUD functionality is :
JpaRepository
the typical CRUD functionality is :
PagingAndSortingRepository
When using Pageable, we create a Pageable object with certain properties and we’ve to specify at least:
form more information visit this site resources