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

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

  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 …

  3. 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 …

  4. 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 …

  5. PostMapping Spring boot annotation is not working

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

  6. 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 …

  7. When to use @RequestMapping, @GetMapping and …

    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 …

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

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

  9. Can someone please clear the difference between @GetMapping …

    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?

  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