在play20的验证器中约束消息

时间:2012-03-22 16:48:24

标签: playframework-2.0

我想为Constraints验证器提供不同的消息,但我在徘徊怎么办.... 示例

@Constraints.Required
@Constraints.Pattern("\\d{1,6}")
public String thisIsAnInt;

我想要点什么

@Constraints.Required
    @Constraints.Pattern(message="ThisismyspecificMessage",value=\\d{1,6}")
    public String thisIsAnInt;

使用表单中的引导程序正确显示它。

有可能吗? 非常感谢

1 个答案:

答案 0 :(得分:10)

正如您所写,您可以使用

@Constraints.Required(message = "This is field required")
@Constraints.Pattern(value = "\\d{1,6}", message = "This field must contain from 1 to 6 digits")
public String thisIsAnInt;