If I have this variable in my Java model:
@Pattern(regexp = "^[a-zA-Z0-9]*$", message = "Unsupported characters for 'myVariable'")
private String myVariable;
Is it possible to include the value of myVariable in the message? E.g. if myVariable was 'foo!' the message might read "'foo' is unsupported for 'myVariable'".