superDiamond使用心得

1.java客户端:

客户端首先引入super-diamond-client的jar包

<dependency>

  <groupId>com.github.diamond</groupId>
  <artifactId>super-diamond-client</artifactId>
  <version>1.2.1-SNAPSHOT</version>
  </dependency>

spring配置中添加

<bean id="propertiesConfiguration" class="com.github.diamond.client.PropertiesConfigurationFactoryBean"/>

PropertiesConfigurationFactoryBean类往里面找  有

System.getProperty获取虚拟机参数,故单元测试或者Tomcat容器跑的时候都要配置vm参数。


-Dsuperdiamond.projcode=***
-Dsuperdiamond.host=***
-Dsuperdiamond.port=8283
-Dsuperdiamond.profile=development

然后可以用PropertiesConfigurationFactoryBean的静态方法来获取superdiamond的配置了

PropertiesConfigurationFactoryBean.getPropertiesConfiguration().getString("这里填superDiamond配置中的key")

或者写个工具类

public class SuperDiamondUtil {

/**

 *creat by binli8
* 这是我获取配置参数...
*/
public static String MYTEST = "mytest";

private static PropertiesConfiguration propertiesConfiguration = PropertiesConfigurationFactoryBean.getPropertiesConfiguration();

public static String getValue(String key) {
return propertiesConfiguration.getString(key);
}
}


当在spring配置文件中需要使用superDiamond的参数用于注入其他的bean时,就需要用${"你的key"}能够获取到配置参数了,添加如下配置:

<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="properties" ref="propertiesConfiguration" />
</bean>

或者配置这个也行

<bean class="org.springframework.context.support.PropertySourcesPlaceholderConfigurer">
    <property name="properties" ref="propertiesConfiguration" />
</bean>


2.jetty客户端:

用jetty跑web服务,我写了个jetty启动的deml了,关键是路径,不过这里好像不需要考虑。

待补充

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值