代码之家  ›  专栏  ›  技术社区  ›  user2647271

Spring,根据Bean的字段值之一在Bean实例中注入属性,这可能吗?

  •  0
  • user2647271  · 技术社区  · 7 年前

    我有一个用于配置webservices客户端的Pojo:

    public class ServiceConfig {
    
        private String url;
        private String endpoint;
        private String serviceName;
    
        public ServiceConfig(String serviceName) {
            super();
            this.serviceName = serviceName;
        }
    

    }

    这就是我的申请。属性文件如下所示:

    service1.url=http://localhost:8087/
    service1.endpoint=SOME_ENDPOIT1
    service2.url=http://localhost:8085/
    service2.endpoint=SOME_ENDPOIT2
    service3.url=http://localhost:8086/
    service3.endpoint=SOME_ENDPOIT3
    service4.url=http://localhost:8088/
    service4.endpoint=SOME_ENDPOIT4
    

    我试图实现的是,当我像这样实例化ServiceConfig时,Spring可以注入正确的属性:

    ServiceConfig sc=新ServiceConfig(“service1”);

    有可能吗?

    1 回复  |  直到 7 年前
        1
  •  0
  •   bilak    7 年前

    您只使用弹簧还是同时使用弹簧靴?

    注射怎么样 org.springframework.core.env.Environment 并使用它进行配置。

    所以像这样的方法可能会奏效:

    public class ServiceConfig {
    
        private String url;
        private String endpoint;
        private String serviceName;
    
        public ServiceConfig(String serviceName, Environment env) {
            // TODO assert on serviceName not empty 
            this.serviceName = serviceName;
            this.url = env.getProperty(serviceName.concat(".url");
            this.endpoint = env.getProperty(serviceName.concat(".endpoint"); 
        }
    }
    

    我想可能有一个更简单/更优雅的解决方案,但我不知道你的情况。

    spring boot版本

    使用spring boot,只需定义pojo(字段名必须与属性名匹配)

    public class ServiceConfig {
    
        private String url;
        private String endpoint;
    
        // getters setters
    }
    

    然后在某些配置中,您可以执行此操作(注意:中的值 ConfigurationProperties 是中配置的前缀 application.properties ):

    @Configuration
    public class ServicesConfiguration {
    
        @Bean
        @ConfigurationProperties("service1")
        ServiceConfig service1(){
            return new ServiceConfig();
        }
    
        @Bean
        @ConfigurationProperties("service2")
        ServiceConfig service2(){
            return new ServiceConfig();
        }
    }