Hard
Considering the following code, what response will be returned to the GET/users
request?
@RestController
public class MyController{
@GetMapping("/users")
public String get(@RequestParam String q){
//...
}
}
Author: W3D TeamStatus: PublishedQuestion passed 111 times
Edit
0
Community EvaluationsNo one has reviewed this question yet, be the first!
Similar QuestionsMore questions about Spring