gpt4 book ai didi

java - 我如何使用 spring 使用带参数的消息

转载 作者:行者123 更新时间:2023-12-02 06:34:07 24 4
gpt4 key购买 nike

我想将应用程序消息外部化到属性文件。我正在使用 Spring 加载属性文件。

<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<list>
<value>classpath:applicationmessage.properties</value>
</list>
</property>
<property name="ignoreResourceNotFound" value="true" />

我收到了关于para的消息

message.myMessage = Couldn't find resource for customer id {0} and business unit {1}

使用 java 文件中的参数读取此消息的最佳方法是什么?是否有其他方法来外部化消息。

最佳答案

这取决于,存在不同的方法,直接在jsp中,在表单验证过程中,等等。

例如

属性中的消息:

msg=My message {0} and {1}.

在你的jsp中:

<spring:message code="msg" 
arguments="${value1},${value2}"
htmlEscape="false"/>

http://docs.spring.io/spring/docs/3.0.x/spring-framework-reference/html/spring.tld.html#spring.tld.message

关于java - 我如何使用 spring 使用带参数的消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19828220/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com