如果我的Java模型中有这个变量:
@Pattern(regexp = "^[a-zA-Z0-9]*$", message = "Unsupported characters for 'myVariable'") private String myVariable;
是否可以在消息中包含myVariable的值?例如,如果myVariable为'foo!',则消息可能显示为“'myVariable'不支持'foo'”。
mrwjdhj31#
找到了答案here。
@Pattern(regexp = "^[a-zA-Z0-9]*$", message="'${validatedValue}' contains unsupported characters") private String myVariable;
1条答案
按热度按时间mrwjdhj31#
找到了答案here。