Код: Выделить всё
@GetMapping(value = "/test")
@ResponseBody
public String getText(@RequestParam String text) {
return modified(text);
}
Подробнее здесь: https://stackoverflow.com/questions/756 ... ts-in-rest
Код: Выделить всё
@GetMapping(value = "/test")
@ResponseBody
public String getText(@RequestParam String text) {
return modified(text);
}