Spring BootアプリケーションとMessageSource 質問する

Spring BootアプリケーションとMessageSource 質問する

MessageSource を使用してデモ用の Spring Boot アプリを作成しようとしましたが、何が問題なのかわかりませんでした。いくつかの方法を試しました:

  • メッセージソース自動構成
  • @configuration ファイル内に独自の Bean を作成し、それを自動配線する

以下はメッセージソース自動構成方法:

私はspring-boot-starter-parentを使用しています1.5.7.リリース

私のフォルダ構造:

ここに画像の説明を入力してください

デモアプリケーション.java

@SpringBootApplication
public class DemoApplication
{
  public static void main(String[] args)
  {
    SpringApplication.run(DemoApplication.class, args);
  }
}

デモコントローラ.java

@RestController
public class DemoController implements MessageSourceAware
{
  private MessageSource messageSource;

  @Override
  public void setMessageSource(MessageSource messageSource)
  {
    this.messageSource = messageSource;
  }

  @RequestMapping("demo")
  public String getLocalisedText()
  {
    return messageSource.getMessage("test", new Object[0], new Locale("el"));
  }
}

アプリケーション.yml

spring:
  messages:
    basename: messages

メッセージ.プロパティ

test=This is a demo app!

メッセージ_el.プロパティ

test=This is a greek demo app!

xml ファイルの

<groupId>com.example.i18n.demo</groupId>
<artifactId>demo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>

<name>demo</name>
<description>Demo project for Spring Boot</description>

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>1.5.7.RELEASE</version>
    <relativePath />
    <!-- lookup parent from repository -->
</parent>

<properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <project.reporting.outputEncoding>UTF-
    8</project.reporting.outputEncoding>
    <java.version>1.8</java.version>
</properties>

<dependencies>      
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter</artifactId>
    </dependency>

    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-test</artifactId>
        <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
</dependencies>

サーバーの起動中に、AutoConfiguration が機能していることは確認できますが、Bean が見つかりません。

MessageSourceAutoConfiguration matched:
      - ResourceBundle found bundle URL [file:/C:/Users/{user}/Downloads/demo/demo/target/classes/messages.properties] (MessageSourceAutoConfiguration.ResourceBundleCondition)
      - @ConditionalOnMissingBean (types: org.springframework.context.MessageSource; SearchStrategy: current) did not find any beans (OnBeanCondition)

独自の Bean を明示的に宣言しようとしましたが、うまくいきませんでした。

エンドポイントを呼び出すときに次のエラーが発生します。

{
    "status": 500,
    "error": "Internal Server Error",
    "exception": "org.springframework.context.NoSuchMessageException",
    "message": "No message found under code 'test' for locale 'el'.",
    "path": "/demo"
}

私が見つけた最も近い SO の質問は、数バージョン前に修正された Spring のバグに関するこの質問 (2 年前) でした。Spring Boot メッセージソース自動構成

ベストアンサー1

リソースにメッセージ パッケージを作成し、構成ファイルでこの Bean 実装を試してみませんか。

@Bean
public MessageSource messageSource() {
    ReloadableResourceBundleMessageSource messageSource = new ReloadableResourceBundleMessageSource();
    messageSource.setBasename("classpath:messages");
    messageSource.setCacheSeconds(10); //reload messages every 10 seconds
    return messageSource;
}

さらに、@構成Spring Boot のコンセプトに完全に適合するように、xml ファイルの代わりに注釈付き構成クラスを使用します。

おすすめ記事