Files
cigs4/ym-common/src/main/java/com/cnbm/common/utils/MessageUtils.java
weihongyang 7aaa6700b3 commit init
2022-06-20 16:26:51 +08:00

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());
}
}