JAVA-10922 Fix RestTemplateBasicLiveTest in spring-resttemplate module

This commit is contained in:
anuragkumawat 2022-03-27 10:55:35 +05:30
parent c9637e95fd
commit 1377f718eb
1 changed files with 2 additions and 1 deletions

View File

@ -9,6 +9,7 @@ import java.util.Map;
import com.baeldung.resttemplate.web.dto.Foo;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpStatus;
import org.springframework.http.MediaType;
import org.springframework.http.ResponseEntity;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.PathVariable;
@ -114,7 +115,7 @@ public class FooController {
return id;
}
@RequestMapping(method = RequestMethod.POST, value = "/foos/form")
@RequestMapping(method = RequestMethod.POST, value = "/foos/form", produces = MediaType.TEXT_PLAIN_VALUE)
@ResponseStatus(HttpStatus.CREATED)
@ResponseBody
public String submitFoo(@RequestParam("id") String id) {