欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

spring 如何将配置信息注入静态变量的方法

程序员文章站 2023-12-20 20:45:16
我们学习过将配置信息,通过@value()的方法注入到对象的变量。这是由于对象是由spring来托管的。那么非spring如果,我们需要在静态方法中,使用配置文件中的值,又...

我们学习过将配置信息,通过@value()的方法注入到对象的变量。这是由于对象是由spring来托管的。那么非spring如果,我们需要在静态方法中,使用配置文件中的值,又该怎么做呢?

传统的错误作法

application.properties

spring.redis.host=test
@component
public class redisserviceimpl implements redisservice {
  ...
  @value("${spring.redis.host}")
  static public string host;
  
  @value("${spring.redis.port}")
  static public integer port;
  ...
  
   static public jedispool getjedispool() {
    if (redisserviceimpl.host == null) {
      logger.info("host 未注入");
    }
  }

控制台打印为: "host 未注入

正确的方法

@component
public class redisserviceimpl implements redisservice {
  ...
  static public string host;
  static public integer port;
  
    @value("${spring.redis.host}")
  public void sethost(string host) {
    redisserviceimpl.host = host;
  }

  @value("${spring.redis.port}")
  public void setport(integer port) {
    redisserviceimpl.port = port;
  }
  ...
  
   static public jedispool getjedispool() {
    if (redisserviceimpl.host == null) {
      logger.info("host 未注入");
    } else {
      logger.info("host 值为" + redisserviceimpl.host);
    }
  }

控制台正确的打印了注入的值。

原因猜想

spring进行组件扫描,遇到@component时,初始化对象 redisserviceimpl, 初始化过程中,扫描到@value注解,将值注入给方法。

接着,方法将值传给了redisserviceimpl类,故redisserviceimpl有值 -- 正解。

如果将@value(),直接加到静态私有变量上,则在初始化对象时,由于静态私有变量属于类,所以spring未对类进行操作 -- 错误。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。

上一篇:

下一篇: