19

これは私のmessageResource宣言です

<?xml version="1.0" encoding="UTF-8"?>

<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
    xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
    http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd">

    <!-- Auto-detect controllers in this package -->
    <context:component-scan base-package="levelup.world.web" />

    <!-- Prepend /WEB-INF/jsp/ and append .jsp to the view name -->
    <bean id="viewResolver"
        class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/WEB-INF/jsp/" />
        <property name="suffix" value=".jsp" />
    </bean>

    <!-- Access resource bundles with the specified basename -->
    <bean id="messageSource"
        class="org.springframework.context.support.ReloadableResourceBundleMessageSource"
        p:basename="/WEB-INF/messages/" />

</beans>

アプリケーションを実行すると、このエラーが表示されます

No message found under code 'country.plural' for locale 'fil_PH'

これで、web-inf内のmessagesフォルダー内に、次のメッセージプロパティがあります。

messages_en.properties
messages_fr.properties
messages.properties

私はここで何が欠けていますか?

4

7 に答える 7

25

一般に、このような問題は、ロケールが存在しないためではなく、MessageBundle正しく構成されていないために発生します。あなたの場合、ベース名の「/」を削除する必要があるようです。

<bean id="messageSource"
     class="org.springframework.context.support.ReloadableResourceBundleMessageSource"
     p:basename="/WEB-INF/messages" />

なぜそうなのか:

バンドルしている場合messages.propertiesmessages_en.propertiesバンドル名はmessagesです。それらがWEB-INFフォルダにある場合、basenameは/WEB-INF/messages、つまり/に従いますpath/to/bundle/bundlename。フォルダmessages.properties内にある場合、対応するベース名はです。/WEB-INF/messages/WEB-INF/messages/messages

于 2013-02-25T13:59:49.107 に答える
13

スプリングブーツの場合、次のようなものが必要です。

@Bean
public MessageSource messageSource() {
     ReloadableResourceBundleMessageSource messageSource = new ReloadableResourceBundleMessageSource();
     messageSource.setBasename("/WEB-INF/classes/messages");
     return messageSource;
}
于 2016-09-07T13:21:16.523 に答える
5

Spring Bootフォルダーリソースの場合、Beanの名前を追加する必要があります。

@Bean(name="messageSource")
public ResourceBundleMessageSource bundleMessageSource() {
ResourceBundleMessageSource messageSource = new ResourceBundleMessageSource();
messageSource.setBasename("messages");
return messageSource;
}
于 2019-09-03T11:01:16.987 に答える
3

Springbootapplication.propertiesでも指定できます

# INTERNATIONALIZATION 
spring.messages.basename=i18n/messages
spring.messages.encoding=UTF-8
于 2019-01-01T10:05:03.120 に答える
2

application.propertiesにいくつかのコードを追加できます。

spring.messages.always-use-message-format=false
spring.messages.basename=messages
spring.messages.cache-seconds=-1
spring.messages.encoding=UTF-8
spring.messages.fallback-to-system-locale=true
于 2020-01-21T10:03:35.473 に答える
0

多分それは誰かを助けるでしょう。

errors.rejectValue("fieldName", "errorCode", "textException");

私のようにmessageResourceを使用しない場合は、「errorCode」の代わりに「」と書く必要があります。

例:

errors.rejectValue("name", "", "This field should not be empty");

このようにして、例外を回避することができました。

于 2021-07-10T07:53:15.433 に答える
-1

デフォルトでは、mavenはそのようなリソースバンドルメッセージソースを以下で見つけることを前提としています

src / main / resources

。その場所の下に必要なすべてのフォルダーを移動し、コンテキストに次のコードがあることを確認します

<bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource">
<property name="basename"><value>messages</value></property>
</bean>
于 2020-02-04T19:55:31.173 に答える