如何覆盖 struts.messages.error.file.too.large 属性

发布于 2024-09-12 21:31:17 字数 214 浏览 2 评论 0原文

我正在使用 Struts2 fileUpload 拦截器来上传文件。我已经配置了 maxSize,允许的 contentTypes ... props 等。但是当用户违反 maxSize ... Struts2 显示错误消息,这是非常长的字符串...

我想更改消息字符串,即如何覆盖 struts.messages .error.file.too.large ...知道吗?

谢谢!

I am using Struts2 fileUpload interceptor to upload the files. I have configured the maxSize, allowed contentTypes ... props etc. But when user violate the maxSize ... Struts2 display error message which is very long string ...

I want to change the message string i.e. how I can override struts.messages.error.file.too.large ... any idea?

Thanks!

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

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

发布评论

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

评论(1

つ低調成傷 2024-09-19 21:31:17

您可以在类或全局的现有消息资源 .properties 文件中定义自定义错误消息:

struts.messages.error.uploading=Upload error.
struts.messages.error.file.too.large=Uploaded file was too large.
struts.messages.error.content.type.not.allowed=File type is not allowed.
struts.messages.error.file.extension.not.allowed=File extension is not allowed.

如果您当前没有使用 .properties 文件来存储文本,文档中有关于使用和配置 < a href="http://struts.apache.org/2.1.8.1/docs/message-resource-files.html" rel="nofollow noreferrer">消息资源文件。

You can define the custom error messages in your existing message resource .properties file(s) for the class or globally:

struts.messages.error.uploading=Upload error.
struts.messages.error.file.too.large=Uploaded file was too large.
struts.messages.error.content.type.not.allowed=File type is not allowed.
struts.messages.error.file.extension.not.allowed=File extension is not allowed.

If you're not currently using .properties files to store your text, the docs have a good section on using and configuring Message Resource Files.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文