如何覆盖 struts.messages.error.file.too.large 属性
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在类或全局的现有消息资源 .properties 文件中定义自定义错误消息:
如果您当前没有使用 .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:
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.