gpt4 book ai didi

io.syndesis.integration.model.YamlHelpers.createObjectMapper()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-14 04:07:31 25 4
gpt4 key购买 nike

本文整理了Java中io.syndesis.integration.model.YamlHelpers.createObjectMapper()方法的一些代码示例,展示了YamlHelpers.createObjectMapper()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YamlHelpers.createObjectMapper()方法的具体详情如下:
包路径:io.syndesis.integration.model.YamlHelpers
类名称:YamlHelpers
方法名:createObjectMapper

YamlHelpers.createObjectMapper介绍

暂无

代码示例

代码示例来源:origin: io.syndesis.integration-runtime/model

public static SyndesisModel load(InputStream source) throws IOException {
    return YamlHelpers.createObjectMapper().readValue(source, SyndesisModel.class);
  }
}

代码示例来源:origin: io.syndesis.integration-runtime/runtime

public MarshallingTest(Step step) {
  this.step = step;
  this.mapper = YamlHelpers.createObjectMapper();
}

代码示例来源:origin: io.syndesis.integration-runtime/model

@Test
  public void testMarshal() throws Exception {
    String expectedName = "cheese";
    String expectedTrigger = "activemq:foo";
    String expectedFunctionName = "io.syndesis.runtime.integration.example.Main::cheese";
    String expectedEndpointUrl = "http://google.com/";

    SyndesisModel expected = new SyndesisModel();
    expected.createFlow().name(expectedName).endpoint(expectedTrigger).function(expectedFunctionName).endpoint(expectedEndpointUrl);

    String yaml = YamlHelpers.createObjectMapper().writeValueAsString(expected);

    LOG.info("Created YAML:\n{}", yaml);

    try(InputStream is = new ByteArrayInputStream(yaml.getBytes(StandardCharsets.UTF_8))) {
      SyndesisModel actual = YamlHelpers.load(is);

      Flow actualFlow = SyndesisAssertions.assertFlow(actual, 0);
      SyndesisAssertions.assertEndpointStep(actualFlow, 0, expectedTrigger);
      SyndesisAssertions.assertFunctionStep(actualFlow, 1, expectedFunctionName);
      SyndesisAssertions.assertEndpointStep(actualFlow, 2, expectedEndpointUrl);
    }
  }
}

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com