如何使用@Value从message_en.yml文件获取值?

时间:2018-09-05 11:04:28

标签: spring-boot gradle classpath

当我使用时:

@PropertySource( "classpath:messages_en.yml" )
public class MessageUtils
{
    @Value( "${createtransaction}" )
    private String createTransactionMSG;
}

(以上)为我工作。

但是我想知道,有没有任何方法可以在不使用messages_en.yml的情况下从@PropertySource( "classpath:messages_en.yml" )获取价值。就像我要从application-local.yml获取价值时,我只使用@Value( "${abc.uri.createtransaction}" )这是正确的。

folders

0 个答案:

没有答案