Приложение Spring boot и MessageSource

Я пытался создать демонстрационное приложение spring boot с MessageSource, но я не мог понять, в чем проблема. Я попробовал несколькими способами:

  • MessageSourceAutoConfiguration
  • создание моего собственного компонента в файле @configuration и автозапуск его

ниже MessageSourceAutoConfiguration путь:

я использую spring-boot-starter-parent 1.5.7.Отпустите.

мои папки структура:

enter image description here

DemoApplication.java

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

DemoController.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!

messages_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>

при запуске сервера, я вижу, что Автоконфигурация работает, но не могу найти Боб:

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)

Я попытался также явно объявить свой собственный боб, но не сработал.

при вызове конечной точки, я получаю следующую ошибку:

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

ближайший вопрос, который я нашел, был этот (2 года) об ошибке весной, которая была исправлена пару версий назад: Весенняя Загрузка MessageSourceAutoConfiguration

2 ответов


можете ли вы создать пакет сообщений в ресурсах и попробовать эту реализацию компонента в файле конфигурации:

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

кроме того, я предлагаю вам использовать аннотированные классы конфигурации @Configuration вместо xml-файлов, которые будут идеально адаптированы к концепции Spring Boot.


проблема заключалась в моей конфигурации кодировки eclipse, которую мне еще не удалось исправить.

после отладки кода spring (ReloadableResourceBundleMessageSource.java) Я мог видеть, что мое свойство key=value загружено, но с 3 пробелами перед каждым символом ("t e s t = T h i s i s A d e m o п - п !").

на другом ПК то же демо-приложение работает нормально.