|
|
@ -65,9 +65,9 @@ public class QuickstartCalleeController {
|
|
|
|
* @return sum
|
|
|
|
* @return sum
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
@GetMapping("/sum")
|
|
|
|
@GetMapping("/sum")
|
|
|
|
public int sum(@RequestParam int value1, @RequestParam int value2) {
|
|
|
|
public String sum(@RequestParam int value1, @RequestParam int value2) {
|
|
|
|
LOG.info("Quickstart Callee Service [{}:{}] is called and sum is [{}].", ip, port, value1 + value2);
|
|
|
|
LOG.info("Quickstart Callee Service [{}:{}] is called and sum is [{}].", ip, port, value1 + value2);
|
|
|
|
return value1 + value2;
|
|
|
|
return String.format("Quickstart Callee Service [%s:%s] is called and sum is [%s].", ip, port, value1 + value2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|