JAVA-10922 Fix RestTemplateBasicLiveTest in spring-resttemplate module

This commit is contained in:
anuragkumawat
2022-03-27 10:55:35 +05:30
parent 32f98e9fb5
commit 97c9774a70

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) {