<春天 :消息>在 Spring for .NET 中 - 在 xml 配置中引用 IMessageSource春天>
Spring for .NET 是否有办法使用来自 IMessageSource
的翻译消息作为 xml 应用程序上下文文件中其他对象的构造函数参数?类似 Java 中的
。我的例子:
<!-- my message source -->
<object name="messageSource" type="MyMessageSource"></object>
<object type="MyLocalizedObject">
<!-- my object, where I need to pass tranlated message into the argument: -->
<constructor-arg name="localizedTitle" value=">{translated title.key}<"/>
</object>
Is there way in Spring for .NET how to use translated message from an IMessageSource
as constructor argument for other object in the xml application context file? Something like <spring:message>
in Java. My example:
<!-- my message source -->
<object name="messageSource" type="MyMessageSource"></object>
<object type="MyLocalizedObject">
<!-- my object, where I need to pass tranlated message into the argument: -->
<constructor-arg name="localizedTitle" value=">{translated title.key}<"/>
</object>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,你可以用这样的表达方式来做到这一点:
可能有更好的方法来实现这一目标,但与此同时,这应该可以让你继续下去。
Well, you could do it with an expression:
There might be a better way to achieve this, but in the meantime this should get you going.