springBoot中使用@Value注解

springboot中使用@value注解

      • 在.yml配置文件例子:
      • 在Java代码中使用

在.yml配置文件例子:

wechat: 
  mini-program:
    appid: asdfghjkl
    app-secret: qazwsxedcrfv
    url: https://api.weixin.qq.com/sns/jscode2session

在Java代码中使用

	//普通属性可以直接添加
	@Value("${wechat.mini-program.url}")
	private String url4openId;
	/*
	 	静态属性需要在set方法上添加
	 	
	 	spring不支持给静态变量的原因:
		Spring的@Value依赖注入是依赖set方法
		set方法是普通的对象方法
		static变量是类的属性,static没有set方法。
	 */
	private static String appId;
	private static String appSecret;

	//注意方法不能加static关键字
	@Value("${wechat.mini-program.appid}")
	private  void setAppId(String appId) {
		MiniProgramUtils.appId = appId;
	}
	@Value("${wechat.mini-program.app-secret}")
	private  void setAppSecret(String appSecret) {
		MiniProgramUtils.appSecret = appSecret;
	}

你可能感兴趣的:(spring,spring,boot)