25 lines
663 B
Java
25 lines
663 B
Java
package com.cnbm.common.utils;
|
|
|
|
import org.springframework.context.MessageSource;
|
|
import org.springframework.context.i18n.LocaleContextHolder;
|
|
|
|
/**
|
|
* @Author weihongyang
|
|
* @Date 2022/6/7 2:42 PM
|
|
* @Version 1.0
|
|
*/
|
|
public class MessageUtils {
|
|
private static MessageSource messageSource;
|
|
static {
|
|
messageSource = (MessageSource)SpringContextUtils.getBean("messageSource");
|
|
}
|
|
|
|
public static String getMessage(int code){
|
|
return getMessage(code, new String[0]);
|
|
}
|
|
|
|
public static String getMessage(int code, String... params){
|
|
return messageSource.getMessage(code+"", params, LocaleContextHolder.getLocale());
|
|
}
|
|
}
|