<春天 :消息>在 Spring for .NET 中 - 在 xml 配置中引用 IMessageSource

发布于 2025-01-05 03:34:38 字数 560 浏览 0 评论 0原文

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 技术交流群。

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

发布评论

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

评论(1

夏九 2025-01-12 03:34:38

好吧,你可以用这样的表达方式来做到这一点:

<object name="messageSource" type="MyMessageSource"></object>
<object type="q9257449_springmessage.MyClass, q9257449_springmessage">
  <constructor-arg name="localizedTitle" 
                   expression="@(messageSource).GetMessage('HelloMessage', 'mr.', 'Anderson')" />
</object>

可能有更好的方法来实现这一目标,但与此同时,这应该可以让你继续下去。

Well, you could do it with an expression:

<object name="messageSource" type="MyMessageSource"></object>
<object type="q9257449_springmessage.MyClass, q9257449_springmessage">
  <constructor-arg name="localizedTitle" 
                   expression="@(messageSource).GetMessage('HelloMessage', 'mr.', 'Anderson')" />
</object>

There might be a better way to achieve this, but in the meantime this should get you going.

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