如何读取类中的全局属性文件?
我正在阅读以下 url 上的 struts2 教程。
http://struts.apache.org/2.2.1/docs /message-resource-files.html
它解释了如何读取视图文件中属性键的值,但它没有解释如何读取操作类或模型类中的属性值。
如何读取操作或模型类中属性键的值?
I am reading a struts2 tutorial on the following url.
http://struts.apache.org/2.2.1/docs/message-resource-files.html
it explains how to read a value of a property key in a view file, but it doesn't explain how to read property values in an action class or in a model class.
How do I read a value of a property key in an action or a model class?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用方法
ActionSupport.getText(String)
。例如:messages.properties
struts.xml
操作类
对于未扩展
ActionSupport
的类,请使用以下内容(在 Struts2 运行时期间):Use the method
ActionSupport.getText(String)
. For example :messages.properties
struts.xml
Action class
For classes not extending
ActionSupport
, use the following (during run time of Struts2) :