Commit d6cf818c authored by 孙 楠's avatar 孙 楠

使用 ApolloInjectorCustomizer 扩展

parent 76f8a595
package cn.quantgroup.apollopatch;
import com.ctrip.framework.apollo.exceptions.ApolloConfigException;
import com.ctrip.framework.apollo.internals.ConfigManager;
import com.ctrip.framework.apollo.internals.ConfigServiceLocator;
import com.ctrip.framework.apollo.internals.Injector;
import com.ctrip.framework.apollo.internals.RemoteConfigLongPollService;
import com.ctrip.framework.apollo.spi.*;
import com.ctrip.framework.apollo.tracer.Tracer;
import com.ctrip.framework.apollo.util.ConfigUtil;
import com.ctrip.framework.apollo.util.http.HttpUtil;
import com.ctrip.framework.apollo.util.yaml.YamlParser;
import com.google.inject.AbstractModule;
import com.google.inject.Guice;
import com.google.inject.Singleton;
import lombok.extern.slf4j.Slf4j;
@Slf4j
public class QGApolloInjector implements Injector {
private com.google.inject.Injector m_injector;
public QGApolloInjector() {
try {
m_injector = Guice.createInjector(new QGApolloInjector.ApolloModule());
} catch (Throwable ex) {
ApolloConfigException exception = new ApolloConfigException("Unable to initialize Guice Injector!", ex);
Tracer.logError(exception);
throw exception;
}
}
@Override
public <T> T getInstance(Class<T> clazz) {
try {
return m_injector.getInstance(clazz);
} catch (Throwable ex) {
Tracer.logError(ex);
throw new ApolloConfigException(
String.format("Unable to load instance for %s!", clazz.getName()), ex);
}
}
@Override
public <T> T getInstance(Class<T> clazz, String name) {
//Guice does not support get instance by type and name
return null;
}
private static class ApolloModule extends AbstractModule {
@Override
protected void configure() {
bind(ConfigManager.class).to(QGConfigManager.class).in(Singleton.class);
bind(ConfigFactoryManager.class).to(DefaultConfigFactoryManager.class).in(Singleton.class);
bind(ConfigRegistry.class).to(DefaultConfigRegistry.class).in(Singleton.class);
bind(ConfigFactory.class).to(DefaultConfigFactory.class).in(Singleton.class);
bind(ConfigUtil.class).in(Singleton.class);
bind(HttpUtil.class).in(Singleton.class);
bind(ConfigServiceLocator.class).in(Singleton.class);
bind(RemoteConfigLongPollService.class).in(Singleton.class);
bind(YamlParser.class).in(Singleton.class);
}
}
}
...@@ -2,47 +2,50 @@ package cn.quantgroup.apollopatch; ...@@ -2,47 +2,50 @@ package cn.quantgroup.apollopatch;
import com.ctrip.framework.apollo.build.ApolloInjector; import com.ctrip.framework.apollo.build.ApolloInjector;
import com.ctrip.framework.apollo.core.enums.Env; import com.ctrip.framework.apollo.core.enums.Env;
import com.ctrip.framework.apollo.core.utils.DeferredLoggerFactory;
import com.ctrip.framework.apollo.internals.DefaultConfigManager; import com.ctrip.framework.apollo.internals.DefaultConfigManager;
import com.ctrip.framework.apollo.util.http.DefaultHttpClient;
import com.ctrip.framework.apollo.util.http.HttpRequest; import com.ctrip.framework.apollo.util.http.HttpRequest;
import com.ctrip.framework.apollo.util.http.HttpResponse; import com.ctrip.framework.apollo.util.http.HttpResponse;
import com.ctrip.framework.apollo.util.http.HttpUtil;
import com.ctrip.framework.foundation.Foundation; import com.ctrip.framework.foundation.Foundation;
import lombok.ToString; import lombok.ToString;
import lombok.extern.slf4j.Slf4j; import org.slf4j.Logger;
import java.util.Map; import java.util.Map;
import java.util.Properties; import java.util.Properties;
@Slf4j
public class QGConfigManager extends DefaultConfigManager { public class QGConfigManager extends DefaultConfigManager {
private static final Logger log = DeferredLoggerFactory
.getLogger(QGConfigManager.class);
public QGConfigManager() { public QGConfigManager() {
super(); super();
boolean isPro = Env.PRO.name().equalsIgnoreCase(Foundation.server().getEnvType()); String env = Foundation.server().getEnvType();
boolean isPro = Env.PRO.name().equalsIgnoreCase(env);
//如果是生产环境, 我也啥都不干. 太吓人了. //如果是生产环境, 我也啥都不干. 太吓人了.
if (isPro) { if (isPro) {
log.info("哇, 生产环境. 配置中心静悄悄. 什么都不敢做."); log.info("哇, 生产环境. 配置中心静悄悄. 什么都不敢做.");
return; return;
} }
String namespace = System.getProperty("NAMESPACE"); String namespace = System.getProperty("NAMESPACE");
if (namespace == null) { if (namespace == null) {
log.info("你好像没有配置 NAMESPACE 哦?你不打算连接到 kubernetes 内部么?"); log.info("你好像没有配置 NAMESPACE 哦?你不打算连接到 kubernetes 内部么?");
return; return;
} }
String eosHost = System.getProperty("eos_server_host", "http://eos.quantgroups.com/"); String eosHost = System.getProperty("eos_server_host", "http://eos.quantgroups.com/");
HttpUtil httpUtil = ApolloInjector.getInstance(HttpUtil.class); DefaultHttpClient httpClient = ApolloInjector.getInstance(DefaultHttpClient.class);
HttpRequest httpRequest = new HttpRequest(eosHost + "api/apollo/env_vars?namespace=" + namespace); HttpRequest httpRequest = new HttpRequest(eosHost + "api/apollo/env_vars?namespace=" + namespace);
HttpResponse<KubeEnvInfo> mapHttpResponse = httpClient.doGet(httpRequest, KubeEnvInfo.class);
HttpResponse<KubeEnvInfo> mapHttpResponse = httpUtil.doGet(httpRequest, KubeEnvInfo.class);
KubeEnvInfo body = mapHttpResponse.getBody(); KubeEnvInfo body = mapHttpResponse.getBody();
if (body != null && body.success) { if (body != null && body.success) {
log.info("客官请放心, kubernetes 的环境变量已经注入, 您可以放心的在 kubernetes 之外启动你的服务了"); log.info("Env={} Namespace={} Kubernetes 的环境变量已经注入, " +
"您可以放心的在 Kubernetes 之外启动你的服务了", env, namespace);
Properties properties = System.getProperties(); Properties properties = System.getProperties();
properties.putAll(body.details); properties.putAll(body.details);
return; return;
} }
log.error("额... 看起来 eos server 有点问题, 返回了false, serverInfo:{} ,body:{}", eosHost, body); log.error("Env={} Namespace={} eos server 返回异常, serverInfo:{} ,body:{}", env, namespace, eosHost, body);
} }
......
package cn.quantgroup.apollopatch;
import com.ctrip.framework.apollo.internals.ConfigManager;
import com.ctrip.framework.apollo.spi.ApolloInjectorCustomizer;
/**
* @author sunnan
*/
public class QGInjectorCustomizer implements ApolloInjectorCustomizer {
@Override
public int getOrder() {
return 0;
}
@Override
public <T> T getInstance(Class<T> clazz) {
if (clazz == ConfigManager.class) {
return (T) new QGConfigManager();
}
return null;
}
@Override
public <T> T getInstance(Class<T> clazz, String name) {
return null;
}
}
package cn.quantgroup.apollopatch;
import com.ctrip.framework.apollo.core.enums.Env;
import com.ctrip.framework.apollo.internals.DefaultMetaServerProvider;
import java.util.HashMap;
import java.util.Map;
public class QGMetaServerProvider extends DefaultMetaServerProvider {
private Map<Env, String> envMeta = new HashMap<>();
{
envMeta.put(Env.DEV, "http://apollo-dev.quantgroups.com");
envMeta.put(Env.PRO, "http://apollo-pro.quantgroups.com");
}
@Override
public String getMetaServerAddress(Env targetEnv) {
String metaServerAddress = super.getMetaServerAddress(targetEnv);
return metaServerAddress == null ? envMeta.get(targetEnv) : metaServerAddress;
}
}
...@@ -3,20 +3,26 @@ package cn.quantgroup.apollopatch.spring; ...@@ -3,20 +3,26 @@ package cn.quantgroup.apollopatch.spring;
import com.ctrip.framework.foundation.Foundation; import com.ctrip.framework.foundation.Foundation;
import org.springframework.boot.SpringApplication; import org.springframework.boot.SpringApplication;
import org.springframework.boot.SpringApplicationRunListener; import org.springframework.boot.SpringApplicationRunListener;
import org.springframework.core.Ordered;
public class QGSpringApplicationRunListener implements SpringApplicationRunListener { public class QGSpringApplicationRunListener implements SpringApplicationRunListener, Ordered
{
private final SpringApplication application; private final SpringApplication application;
private final String[] args; private final String[] args;
public QGSpringApplicationRunListener(SpringApplication application, String[] args) { public QGSpringApplicationRunListener(SpringApplication application, String[] args) {
this.application = application; this.application = application;
this.args = args; this.args = args;
System.setProperty("apollo.bootstrap.enabled", "true"); System.setProperty("apollo.bootstrap.enabled", "true");
String property = Foundation.app().getProperty("namespace", "application"); String property = Foundation.app().getProperty("namespace", "application");
System.setProperty("apollo.bootstrap.namespaces", property); System.setProperty("apollo.bootstrap.namespaces", property);
System.setProperty("apollo.bootstrap.eagerLoad.enabled", "true"); System.setProperty("apollo.bootstrap.eagerLoad.enabled", "true");
} }
@Override
public int getOrder() {
return 0;
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment