我可以传递俄语字符作为参数吗?

时间:2018-12-18 20:26:12

标签: java spring-boot

我需要传递的参数不是英文字符,而是俄语。我可以这样做吗?

@GetMapping("/schedule/{groupTitle}")
public ResponseEntity<String> getShedule(@PathVariable String groupTitle) throws ParserException, IOException {

    return new ResponseEntity<String>(scheduleService.findScheduleByGroupName(groupTitle), HttpStatus.OK);
}

0 个答案:

没有答案