Spring - Как получить доступ к MessageSource в бине (MessageSourceAware)

Spring - Как получить доступ к MessageSource в бине (MessageSourceAware)

В последнем уроке вы можете получитьMessageSource via ApplicationContext. Но чтобы bean-компонент получил MessageSource, вам необходимо реализовать интерфейсMessageSourceAware.

пример

КлассCustomerService, реализующий интерфейсMessageSourceAware, имеет метод установки для установки свойстваMessageSource.

Во время инициализации контейнера Spring, если какой-либо класс, реализующий интерфейсMessageSourceAware, Spring автоматически вставит MessageSource в класс через метод установкиsetMessageSource(MessageSource messageSource).

package com.example.customer.services;

import java.util.Locale;

import org.springframework.context.MessageSource;
import org.springframework.context.MessageSourceAware;

public class CustomerService implements MessageSourceAware
{
    private MessageSource messageSource;

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

    public void printMessage(){
        String name = messageSource.getMessage("customer.name",
                new Object[] { 28, "http://www.example.com" }, Locale.US);

        System.out.println("Customer name (English) : " + name);

        String namechinese = messageSource.getMessage("customer.name",
                new Object[] { 28, "http://www.example.com" },
                        Locale.SIMPLIFIED_CHINESE);

        System.out.println("Customer name (Chinese) : " + namechinese);
    }

}

Запустить его

package com.example.common;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class App
{
    public static void main( String[] args )
    {
        ApplicationContext context =
            new ClassPathXmlApplicationContext(
                new String[] {"locale.xml","Spring-Customer.xml"});

        CustomerService cust = (CustomerService)context.getBean("customerService");
        cust.printMessage();
    }
}

Все файлы свойств и файлы XML повторно используются с последнихResourceBundleMessageSource tutorial.