Affects: \
i have add the @Size and limit the string length from 2 to 4, but it not working
Comment From: DanielLiu1123
You should add spring-boot-starter-validation
dependency, and annotate @Validated
on you controller.
@Validated
@Controller
public class xxController {
}
Comment From: cjdxhjj
@DanielLiu1123 thanks very much, it works