标签: spring-boot
如果布尔表达式评估为true,而给定参数,则我想使请求传递默认值。无需在每个方法中编写if块的“春季”方式将是什么?
@RequestMapping("/") public String get(@RequestParam String parameter) { if (expression) return default; return parameter; }