About 2,000,000 results
Open links in new tab
  1. What is the difference between @RequestMapping and @PostMapping

    Jul 14, 2019 · From the @PostMapping docs : Specifically, @PostMapping is a composed annotation that acts as a shortcut for @RequestMapping (method = RequestMethod.POST). So it is only …

  2. What is @PostMapping annotation in Spring Web MVC?

    Feb 12, 2018 · @PostMapping is a composed annotation that acts as a shortcut for @RequestMapping(method = RequestMethod.POST). @PostMapping annotated methods handle …

  3. java - How to use @PostMapping ()? - Stack Overflow

    May 14, 2018 · I want to create API call by passing string value but without returning output. Inside API method, only updating the value to database. How to create API @postmapping(value = "endpoint") …

  4. Spring - Post Mapping - Stack Overflow

    Nov 20, 2021 · @PostMapping("/test") public boolean test(@RequestParam String username, @RequestBody String data) { //code and stuff } In the reference documentation we can read the …

  5. PostMapping Spring boot annotation is not working

    Apr 9, 2020 · PostMapping Spring boot annotation is not working Asked 5 years, 8 months ago Modified 5 years, 8 months ago Viewed 6k times

  6. When to use @RequestMapping, @GetMapping and @PostMapping …

    Dec 11, 2020 · When working with server rendering frameworks like thymeleaf, its controllers can be divided into two groups for a better understanding: Controllers to show the page content to your …

  7. java - Understanding and Leveraging @PostMapping for Resource …

    Dec 29, 2023 · I gone through experience developer spring boot code, he used @PostMapping for create, update, delete resource. with some Id check logic he decide whether resource should be …

  8. Can someone please clear the difference between @GetMapping and ...

    Jan 13, 2020 · Can someone please clear the difference between @GetMapping and @PostMapping in spring also can we use these annotations at one another's place?

  9. java - PostMapping with Parameters from URI - Stack Overflow

    Oct 18, 2019 · PostMapping with Parameters from URI Asked 6 years, 1 month ago Modified 6 years, 1 month ago Viewed 10k times

  10. Nested JSON request - PostMapping in Springboot - Stack Overflow

    Aug 11, 2020 · Nested JSON request - PostMapping in Springboot Asked 5 years, 4 months ago Modified 5 years, 4 months ago Viewed 2k times