Spring Context

Table of contents

  1. 개요
  2. 대표적인 기능
    1. Converter
    2. Fomatter
    3. ReloadableResourceBundleMessageSource

개요

대표적인 기능

Converter

Fomatter

ReloadableResourceBundleMessageSource

어플리케이션 실행중 메세지 리소스를 Reload 할수 있다.

    @Bean
    public MessageSource messageSource() {
        ReloadableResourceBundleMessageSource messageSource = new ReloadableResourceBundleMessageSource();
        messageSource.setBasenames(names);
        messageSource.setDefaultEncoding("UTF-8");
        return messageSource;
    }

The work and the work are derivative works because they are included in the work. However, derivative works include material and lyrics in the original work. CC BY-SA 4.0

Page last modified: Jul 10 2022.