Springboot应用程序中的响应消息基于登录用户

时间:2018-06-18 12:45:31

标签: java spring-boot authentication internationalization response

我正在使用spring boot,从messages.properties文件读取每个服务的响应,但是我需要根据经过身份验证的用户显示消息。

来自控制器

@Autowired
private Messages MESSAGES;

来自消息类

@Component
@PropertySource("classpath:messages.properties")
public class Messages {
    @Value("${report.not.found}")
    public String REPORT_NOT_FOUND;
}

来自messages.properties     report.not.found =未找到报告

0 个答案:

没有答案