如何在下面的字段中使用bean验证@Pattern来检查第一位是否为'1'?
private Long registration;
Regex贝娄说它必须以1开头,之后必须有任何内容
@Pattern (regexp = "^1.*$") private Long registration;