Skip to content

Instantly share code, notes, and snippets.

@evrentan
Last active March 6, 2022 19:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save evrentan/398ab2ecdde5608bbb4d87c93c202809 to your computer and use it in GitHub Desktop.
Save evrentan/398ab2ecdde5608bbb4d87c93c202809 to your computer and use it in GitHub Desktop.
MessageUtilityServiceImpl Class for Reading "messages" Resource Bundle
package evrentan.examples.springbootprojectexample.message;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import java.text.MessageFormat;
import java.util.Locale;
import java.util.Optional;
import java.util.ResourceBundle;
public class MessageUtilityServiceImpl {
private static final Logger logger = LogManager.getLogger(MessageUtilityServiceImpl.class);
private static final Locale defaultLocale = new Locale("en");
/**
* Get the bundle for the given locale.
*
* @param locale locale of the bundle
* @return ResourceBundle related to the locale
*
* @author <a href="https://github.com/evrentan">Evren Tan</a>
* @since 1.0.0
*/
public static ResourceBundle getBundle(Locale locale) {
if (locale == null) {
locale = Optional.of(Locale.getDefault()).orElse(defaultLocale);
}
return ResourceBundle.getBundle("messages", locale);
}
/**
* Get the message for the given key.
*
* @param messageKey key of the message
* @return String message
*
* @author <a href="https://github.com/evrentan">Evren Tan</a>
* @since 1.0.0
*/
public static String getMessage(String messageKey) {
String message = "messageKey not found !!!";
try {
message = getBundle(null).getString(messageKey);
} catch (Exception e) {
logger.error(String.format("Error while getting message for messageKey %s", messageKey), e);
}
return message;
}
/**
* Get the message for the given key and locale.
*
* @param messageKey key of the message
* @param locale locale of the message
* @return String message
*
* @author <a href="https://github.com/evrentan">Evren Tan</a>
* @since 1.0.0
*/
public static String getMessage(String messageKey, Locale locale) {
return getBundle(locale).getString(messageKey);
}
/**
* Get the message for the given key and arguments.
* @param messageKey key of the message
* @param messageArguments arguments of the message
* @return String message
*
* @author <a href="https://github.com/evrentan">Evren Tan</a>
* @since 1.0.0
*/
public static String getMessage(String messageKey, Object... messageArguments) {
return getMessage(messageKey, messageArguments, null);
}
/**
* Get the message for the given key, locale and arguments.
*
* @param messageKey key of the message
* @param locale locale of the message
* @param messageArguments arguments of the message
* @return String message
*
* @author <a href="https://github.com/evrentan">Evren Tan</a>
* @since 1.0.0
*/
public static String getMessage(String messageKey, Locale locale, Object... messageArguments) {
return MessageFormat.format(getBundle(locale).getString(messageKey), messageArguments);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment