当我使用时:
@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}" )
这是正确的。