spring注解@PropertySource,给类注入属性文件

来源:互联网 发布:华为手机推荐2017知乎 编辑:程序博客网 时间:2024/06/09 17:41
@Service@PropertySource("classpath:config.properties")public class IsmsSmsSendLogServiceImpl implements IismsSmsSendLogService{    @Resource    private Environment env;    public void test() {        final String Appid = env.getProperty("sms.appID");    }}
原创粉丝点击