在C#中,我可以使用(在数据注释上)下面这段代码没有问题:
[RegularExpression(@"^myRegex$", ErrorMessage = "The field {0} is not in the correct format.")]
public string Name { get; set; }
但是在Java中它没有用,我试过了:
@Pattern(regexp = "^myRegex$", message = "The field {0} is not in the correct format.")
private String name;
{0}只返回{0},而不是"名称"字段。
那么,有人可以用Java中的一些例子来帮助我使它工作吗?