All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.diboot.core.util.I18n Maven / Gradle / Ivy

The newest version!
package com.diboot.core.util;

import lombok.extern.slf4j.Slf4j;
import org.springframework.context.MessageSource;
import org.springframework.context.NoSuchMessageException;
import org.springframework.context.i18n.LocaleContextHolder;

import java.util.Locale;

@Slf4j
public class I18n {

    private static MessageSource messageSource;

    public static String message(String code, Object... args) {
        Locale locale = LocaleContextHolder.getLocale();
        if(messageSource == null) {
            messageSource = ContextHolder.getBean(MessageSource.class);
        }
        try {
            String content = messageSource.getMessage(code, args, locale);
            return content;
        } catch (NoSuchMessageException e) {
            return code;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy