我需要传递的参数不是英文字符,而是俄语。我可以这样做吗?
@GetMapping("/schedule/{groupTitle}")
public ResponseEntity<String> getShedule(@PathVariable String groupTitle) throws ParserException, IOException {
return new ResponseEntity<String>(scheduleService.findScheduleByGroupName(groupTitle), HttpStatus.OK);
}