All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.netflix.archaius.bridge.StaticArchaiusBridgeModule Maven / Gradle / Ivy

There is a newer version: 2.8.3
Show newest version
package com.netflix.archaius.bridge;

import com.google.inject.AbstractModule;
import com.netflix.config.DeploymentContext;

/**
 * Module with bindings to bridge the legacy static Archaius1 ConfigurationManager API with the new
 * the Archaius2 Config guice bindings.  Configuration loaded into either library will be visible
 * to the other.
 * 
 * To install,
 * 
 * {@code
 *      Guice.createInjector(new ArchaiusModule(), new StaticArchaiusBridgeModule());
 * }
 * 
* * When running multiple unit tests make sure to add the following @Before method to your JUnit classes * *
 * {@code
 *     @Before
 *     public void before() throws NoSuchFieldException, SecurityException, IllegalArgumentException, IllegalAccessException {
 *         StaticAbstractConfiguration.reset();
 *         StaticDeploymentContext.reset();
 *     }
 * }
 * 
* * @author elandau * */ public final class StaticArchaiusBridgeModule extends AbstractModule { static { System.setProperty("archaius.default.configuration.class", StaticAbstractConfiguration.class.getName()); System.setProperty("archaius.default.deploymentContext.class", StaticDeploymentContext.class.getName()); } @Override protected void configure() { requestStaticInjection(StaticAbstractConfiguration.class); requestStaticInjection(StaticDeploymentContext.class); bind(DeploymentContext.class).to(ConfigBasedDeploymentContext.class); } @Override public boolean equals(Object obj) { return StaticArchaiusBridgeModule.class.equals(obj.getClass()); } @Override public int hashCode() { return StaticArchaiusBridgeModule.class.hashCode(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy