使用 @valid 进行 spring 验证 where/how 自定义错误消息

发布于 2024-10-19 05:35:52 字数 274 浏览 2 评论 0原文

我正在尝试使用属性文件中的错误消息进行一些春季验证。 但我发现的所有示例似乎都有硬编码的值,或者从属性文件获取但使用验证器类并在那里检索它。

我的设置有点不同。 我在请求映射中使用 @Valid 注释,并且我的 @Valid 类使用 @NotNull 等。 我见过一些例子,人们这样做 @NotNull(message = "blablabla"); 但这也是硬编码的,我想将消息放入属性文件中,以便我可以轻松地即时编辑它,以便将来可以轻松地实现 i18n。

任何有关如何实现这一目标的意见将不胜感激。

I'm trying to do some spring validation with the error messages in properties files.
But the examples I find all seem to have the values hardcoded, or gotten from a properties file but using a validator class and retrieving it there.

My setup is a bit different.
I'm using the @Valid annotation in my requestmapping, and my @Valid class uses @NotNull etc.
I've seen some examples where people do @NotNull(message = "blablabla");
But that's also hardcoded, and I'd like to put the messages in a properties file so I can easily edit it on the fly and so I can easily implement i18n in the future.

Any input on how to achieve this would be appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

霞映澄塘 2024-10-26 05:35:52

它的工作方式与显式验证器完全相同 - 您声明 MessageSource 并在 .properties 文件中写入错误消息。消息代码的格式为 constraintName.modelAttributeName.propertyName:

publib class Foo {
    @NotNull private String name;
    ...
}

@RequestMapping
public String submitFoo(@Valid Foo foo, ...) { ... }

messages.properties

NotNull.foo.name=...

MessageSource声明:

<bean id="messageSource"
    class="org.springframework.context.support.ResourceBundleMessageSource">
    <property name="basename" value = "messages" />
</bean>

It works exactly the same way as with explicit Validator - you declare a MessageSource and write error messages in .properties files. Messages codes are formed as constraintName.modelAttributeName.propertyName:

publib class Foo {
    @NotNull private String name;
    ...
}

.

@RequestMapping
public String submitFoo(@Valid Foo foo, ...) { ... }

messages.properties:

NotNull.foo.name=...

MessageSource declaration:

<bean id="messageSource"
    class="org.springframework.context.support.ResourceBundleMessageSource">
    <property name="basename" value = "messages" />
</bean>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文