当我尝试覆盖 NotEmpty 注释错误消息时,未显示自定义错误消息。
情况1
@NotEmpty(message="{username}")
private String username;
消息属性:
NotEmpty.username=test
工作正常。
jsp页面中的输出:
test
案例二:
@NotEmpty(message="{error.required.username}")
private String username;
消息属性:
NotEmpty.user.error.required.username=test
其中 user 是 pojo 类。
jsp页面中的输出:
{error.required.username}
我能知道我在上面的示例代码中做错了什么吗?