HTTP Status 405 - Request method 'PUT' not supported
问题 I have the following controller: @RestController public class RestaurantController { @Autowired RestaurantService restaurantService; @RequestMapping(value = "/restaurant/", method = RequestMethod.GET) public ResponseEntity<List<Restaurant>> listAllRestaurants() { System.out.println("Fetching all restaurants"); List<Restaurant> restaurants = restaurantService.findAllRestaurants(); if(restaurants.isEmpty()){ return new ResponseEntity<List<Restaurant>>(HttpStatus.NO_CONTENT);//You many decide to