Skip to content

Instantly share code, notes, and snippets.

@mehmetcemyucel
Last active April 4, 2021 09:21
Show Gist options
  • Save mehmetcemyucel/105429985b5cb00c9f73ad37c414698e to your computer and use it in GitHub Desktop.
Save mehmetcemyucel/105429985b5cb00c9f73ad37c414698e to your computer and use it in GitHub Desktop.
mcy-sb-rest-test
@RestController
public class RestService {
@Autowired
SecondService service;
@PostMapping("/post-service")
public Response restService(@RequestBody Request request) {
return new Response(request.getRequestValue1() + service.getValue(), request.getRequestValue2());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment