当前位置: 首页>>代码示例>>Java>>正文


Java ParseUtils.interpolate方法代码示例

本文整理汇总了Java中com.alibaba.dubbo.registry.common.route.ParseUtils.interpolate方法的典型用法代码示例。如果您正苦于以下问题:Java ParseUtils.interpolate方法的具体用法?Java ParseUtils.interpolate怎么用?Java ParseUtils.interpolate使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.alibaba.dubbo.registry.common.route.ParseUtils的用法示例。


在下文中一共展示了ParseUtils.interpolate方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: testInterpolateCollMap_NormalCase

import com.alibaba.dubbo.registry.common.route.ParseUtils; //导入方法依赖的package包/类
@Test
public void testInterpolateCollMap_NormalCase() throws Exception {
    List<String> expressions = new ArrayList<String>();
    expressions.add("xx$var1");
    expressions.add("yy${var2}zz");

    Map<String, String> params = new HashMap<String, String>();
    params.put("var1", "CAT");
    params.put("var2", "DOG");

    List<String> interpolate = ParseUtils.interpolate(expressions, params);

    List<String> expected = new ArrayList<String>();
    expected.add("xxCAT");
    expected.add("yyDOGzz");

    assertEquals(expected, interpolate);
}
 
开发者ID:dachengxi,项目名称:EatDubbo,代码行数:19,代码来源:ParseUtilsTest.java

示例2: testInterpolateVariable

import com.alibaba.dubbo.registry.common.route.ParseUtils; //导入方法依赖的package包/类
@Test
public void testInterpolateVariable() throws Exception {
    Map<String, String> params = new HashMap<String, String>();
    params.put("consumer.address", "10.20.130.230");
    String regexp = ParseUtils.interpolate("xx$consumer.address", params);
    assertEquals("xx10.20.130.230", regexp);
}
 
开发者ID:dachengxi,项目名称:EatDubbo,代码行数:8,代码来源:ParseUtilsTest.java

示例3: testInterpolateVariableWithParentheses

import com.alibaba.dubbo.registry.common.route.ParseUtils; //导入方法依赖的package包/类
@Test
public void testInterpolateVariableWithParentheses() throws Exception {
    Map<String, String> params = new HashMap<String, String>();
    params.put("consumer.address", "10.20.130.230");
    String regexp = ParseUtils.interpolate("xx${consumer.address}yy", params);
    assertEquals("xx10.20.130.230yy", regexp);
}
 
开发者ID:dachengxi,项目名称:EatDubbo,代码行数:8,代码来源:ParseUtilsTest.java

示例4: testInterpolateDot

import com.alibaba.dubbo.registry.common.route.ParseUtils; //导入方法依赖的package包/类
@Test
public void testInterpolateDot() throws Exception {
    String regexp = ParseUtils.interpolate("com.alibaba.morgan.MemberService",
            new HashMap<String, String>());
    assertEquals("com.alibaba.morgan.MemberService", regexp);
}
 
开发者ID:dachengxi,项目名称:EatDubbo,代码行数:7,代码来源:ParseUtilsTest.java

示例5: testInterpolateWildcard

import com.alibaba.dubbo.registry.common.route.ParseUtils; //导入方法依赖的package包/类
@Test
public void testInterpolateWildcard() throws Exception {
    String regexp = ParseUtils.interpolate("com.alibaba.morgan.*",
            new HashMap<String, String>());
    assertEquals("com.alibaba.morgan.*", regexp);
}
 
开发者ID:dachengxi,项目名称:EatDubbo,代码行数:7,代码来源:ParseUtilsTest.java

示例6: testInterpolateSequence

import com.alibaba.dubbo.registry.common.route.ParseUtils; //导入方法依赖的package包/类
@Test
public void testInterpolateSequence() throws Exception {
    String regexp = ParseUtils.interpolate("1.0.[0-9]", new HashMap<String, String>());
    assertEquals("1.0.[0-9]", regexp.toString());
}
 
开发者ID:dachengxi,项目名称:EatDubbo,代码行数:6,代码来源:ParseUtilsTest.java


注:本文中的com.alibaba.dubbo.registry.common.route.ParseUtils.interpolate方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。