- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中com.fasterxml.jackson.dataformat.yaml.YAMLMapper
类的一些代码示例,展示了YAMLMapper
类的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YAMLMapper
类的具体详情如下:
包路径:com.fasterxml.jackson.dataformat.yaml.YAMLMapper
类名称:YAMLMapper
[英]Convenience version of ObjectMapper which is configured with com.fasterxml.jackson.dataformat.yaml.YAMLFactory.
[中]使用com配置的ObjectMapper的方便版本。fasterxml。杰克逊。数据格式。亚马尔。YAMLFactory。
代码示例来源:origin: spullara/mustache.java
private JsonNode getSpec(String spec) throws IOException {
return new YAMLFactory(new YAMLMapper()).createParser(new InputStreamReader(
SpecTest.class.getResourceAsStream(
"/spec/specs/" + spec))).readValueAsTree();
}
代码示例来源:origin: jooby-project/jooby
/**
* Convert this RAML object to Yaml.
*
* @return Yaml string.
* @throws IOException If something goes wrong.
*/
public String toYaml() throws IOException {
YAMLMapper mapper = new YAMLMapper();
mapper.setSerializationInclusion(JsonInclude.Include.NON_NULL);
mapper.configure(YAMLGenerator.Feature.ALWAYS_QUOTE_NUMBERS_AS_STRINGS, false);
mapper.configure(YAMLGenerator.Feature.MINIMIZE_QUOTES, true);
return "#%RAML 1.0\n" + mapper.writer().withDefaultPrettyPrinter().writeValueAsString(this);
}
代码示例来源:origin: redisson/redisson
public YAMLMapper configure(YAMLParser.Feature f, boolean state) {
return state ? enable(f) : disable(f);
}
代码示例来源:origin: redisson/redisson
/**
* @since 2.5
*/
@Override
public YAMLMapper copy()
{
_checkInvalidCopy(YAMLMapper.class);
return new YAMLMapper(this);
}
代码示例来源:origin: strimzi/strimzi-kafka-operator
@Override
public String toString() {
YAMLMapper mapper = new YAMLMapper().disable(YAMLGenerator.Feature.USE_NATIVE_TYPE_ID);
try {
return mapper.writeValueAsString(this);
} catch (JsonProcessingException e) {
throw new RuntimeException(e);
}
}
代码示例来源:origin: strimzi/strimzi-kafka-operator
@Override
public String toString() {
YAMLMapper mapper = new YAMLMapper();
try {
return mapper.writeValueAsString(this);
} catch (JsonProcessingException e) {
throw new RuntimeException(e);
}
}
代码示例来源:origin: org.springframework.cloud/spring-cloud-skipper-server-core
protected List<PackageMetadata> deserializeFromIndexFiles(List<File> indexFiles) {
List<PackageMetadata> packageMetadataList = new ArrayList<>();
YAMLMapper yamlMapper = new YAMLMapper();
yamlMapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);
for (File indexFile : indexFiles) {
try {
MappingIterator<PackageMetadata> it = yamlMapper.readerFor(PackageMetadata.class).readValues(indexFile);
while (it.hasNextValue()) {
PackageMetadata packageMetadata = it.next();
packageMetadataList.add(packageMetadata);
}
}
catch (IOException e) {
throw new IllegalArgumentException("Can't parse Release manifest YAML", e);
}
}
return packageMetadataList;
}
代码示例来源:origin: io.konig/konig-schemagen
private void readTags(String fileName, StringBuffer template) throws FileNotFoundException, IOException {
File resourceFile = new File(path, fileName);
if(resourceFile.exists()){
try (InputStream inputStream = new FileInputStream(resourceFile)) {
String contents = IOUtils.toString(inputStream);
YAMLMapper mapper = new YAMLMapper(new YAMLFactory());
JsonNode node = mapper.readTree(contents);
JsonNode resourcesNode = node.get("Tags");
String jsonAsYaml = new YAMLMapper().writeValueAsString(resourcesNode);
String[] resourceLines=jsonAsYaml.split("\n");
for(String line:resourceLines){
if(!line.contains("---")){
template.append(""+line+"\n ");
}
}
}
}
}
代码示例来源:origin: strimzi/strimzi-kafka-operator
public static <T> T fromYamlString(String yamlContent, Class<T> c, boolean ignoreUnknownProperties) {
ObjectMapper mapper = new YAMLMapper().configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, !ignoreUnknownProperties);
try {
return mapper.readValue(yamlContent, c);
} catch (InvalidFormatException e) {
throw new IllegalArgumentException(e);
} catch (IOException e) {
throw new RuntimeException(e);
}
}
代码示例来源:origin: spring-cloud/spring-cloud-skipper
@Override
public List<CloudFoundryApplicationSkipperManifest> read(String manifest) {
if (canSupport(manifest)) {
List<CloudFoundryApplicationSkipperManifest> applicationSpecs = new ArrayList<>();
YAMLMapper mapper = new YAMLMapper();
mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);
mapper.configure(MapperFeature.ACCEPT_CASE_INSENSITIVE_PROPERTIES, true);
mapper.setPropertyNamingStrategy(PropertyNamingStrategy.KEBAB_CASE);
try {
MappingIterator<CloudFoundryApplicationSkipperManifest> it = mapper
.readerFor(CloudFoundryApplicationSkipperManifest.class)
.readValues(manifest);
while (it.hasNextValue()) {
CloudFoundryApplicationSkipperManifest appKind = it.next();
applicationSpecs.add(appKind);
}
}
catch (JsonMappingException e) {
logger.error("Can't parse Package's manifest YAML = " + manifest);
throw new SkipperException("JsonMappingException - Can't parse Package's manifest YAML = " + manifest,
e);
}
catch (IOException e) {
logger.error("Can't parse Package's manifest YAML = " + manifest);
throw new SkipperException("IOException - Can't parse Package's manifest YAML = " + manifest, e);
}
return applicationSpecs;
}
return Collections.emptyList();
}
代码示例来源:origin: strimzi/strimzi-kafka-operator
public static <T> String toYamlString(T instance) {
ObjectMapper mapper = new YAMLMapper()
.disable(YAMLGenerator.Feature.USE_NATIVE_TYPE_ID)
.setSerializationInclusion(JsonInclude.Include.NON_EMPTY);
try {
return mapper.writeValueAsString(instance);
} catch (JsonProcessingException e) {
throw new RuntimeException(e);
}
}
代码示例来源:origin: com.github.cafdataprocessing/worker-document-testing-unit
/**
* Configures a new Document using a file with JSON or YAML-serialized Document Worker task
*
* @param path File path
* @return current Document builder
* @throws IOException An issue with accessing a file
*/
public static DocumentBuilder fromFile(final String path) throws IOException
{
final YAMLMapper mapper = new YAMLMapper();
final byte[] bytes = FileUtils.readFileToByteArray(new File(path));
final DocumentWorkerDocumentTask workerTask = mapper.readValue(bytes, DocumentWorkerDocumentTask.class);
return new DocumentBuilder(workerTask);
}
代码示例来源:origin: strimzi/strimzi-kafka-operator
public static String getContent(File file, Function<JsonNode, String> edit) {
YAMLMapper mapper = new YAMLMapper();
try {
JsonNode node = mapper.readTree(file);
return edit.apply(node);
} catch (IOException e) {
throw new RuntimeException(e);
}
}
代码示例来源:origin: hortonworks/streamline
private Map<String, String> readConfigFromYamlType(InputStream configFileStream) throws IOException {
ObjectReader reader = new YAMLMapper().reader();
Map<String, Object> confMap = reader.forType(new TypeReference<Map<String, Object>>() {})
.readValue(configFileStream);
return confMap.entrySet().stream()
.collect(toMap(Map.Entry::getKey, e -> convertValueAsString(e.getValue())));
}
代码示例来源:origin: com.reprezen.jsonoverlay/jsonoverlay
public static void main(String[] args) throws Exception {
Opts opts = new Opts(args);
Object parsedYaml = new Yaml().load(new FileInputStream(opts.typeDataFile));
TypeData typeData = new YAMLMapper().convertValue(parsedYaml, TypeData.class);
typeData.init();
new CodeGenerator(opts).generate(typeData);
}
代码示例来源:origin: strimzi/strimzi-kafka-operator
String s = new YAMLMapper().enable(YAMLGenerator.Feature.MINIMIZE_QUOTES).enable(SerializationFeature.INDENT_OUTPUT).writeValueAsString(object);
Pattern p = Pattern.compile("\\$\\{\\{(.+?)\\}?\\}");
Matcher matcher = p.matcher(s);
代码示例来源:origin: com.github.duanxinyuan/library-json-jackson
/**
* 反序列化Yaml文件
* @param path 文件路径
*/
public static <V> V fromYamlFile(String path, Class<V> c) {
try {
return yamlMapper.readValue(new File(path), c);
} catch (IOException e) {
log.error("jackson from yaml error, path: {}, type: {}", path, c, e);
return null;
}
}
代码示例来源:origin: me.snowdrop/istio-model
document = document.trim();
if (!document.isEmpty()) {
final Map<String, Object> resourceYaml = objectMapper.readValue(document, Map.class);
final IstioResource resource = objectMapper.convertValue(resourceYaml, IstioResource.class);
if (wantSpec) {
results.add(clazz.cast(resource.getSpec()));
代码示例来源:origin: me.snowdrop/istio-common
Object deserialize(JsonNode node, String fieldName, Class targetClass, DeserializationContext ctxt) throws IOException {
final String type = getFieldClassFQN(targetClass, valueType);
try {
// load class of the field
final Class<?> fieldClass = Thread.currentThread().getContextClassLoader().loadClass(type);
// create a map type matching the type of the field from the mapping information
final YAMLMapper codec = (YAMLMapper) ctxt.getParser().getCodec();
MapType mapType = codec.getTypeFactory().constructMapType(Map.class, String.class, fieldClass);
// get a parser taking the current value as root
final JsonParser traverse = node.get(fieldName).traverse(codec);
// and use it to deserialize the subtree as the map type we just created
return codec.readValue(traverse, mapType);
} catch (ClassNotFoundException e) {
throw new RuntimeException("Unsupported type '" + type + "' for field '" + fieldName +
"' on '" + targetClass.getName() + "' class. Full type was " + this, e);
}
}
}
代码示例来源:origin: com.github.duanxinyuan/library-json-jackson
/**
* 序列化为YAML
*/
public static <V> String toYaml(V v) {
try {
return yamlMapper.writeValueAsString(v);
} catch (JsonProcessingException e) {
log.error("jackson to yaml error, obj: {}", v, e);
return null;
}
}
我正在编写一个快速前端来显示吉他指法。前端在 Flash 中,但我想以某种人类可读的格式存储选项卡。有人知道已经存在的东西吗?关于如何去做的任何建议?我从阅读一些 stackoverflow 帖子中得
我正在尝试使用 FluidKit 中的功能弄清楚拖放。 我下载了演示应用程序,拖放操作中都有这行代码: private static DataFormat SupportedFormat = Data
我有来自客户的 xml: 和简单的 Java 类 import com.fasterxml.jackson.dataformat.xml.annotation.Jackso
尝试使用 jackson-dataformat-csv 解析 .csv 文件。文件包含许多与我的程序无关的列。 尝试使用 @JsonIgnoreProperties(ignoreUnknown = t
将 POJO 序列化为 CSV 时是否可以定义自定义 header 名称。 换句话说,如果我的 PoJO 中有一个名为 someField 的字段,我希望输出 CSV 文件中的标题列被命名为 Some
这是我的主课: public static void main(String arg[]) throws JsonProcessingException { Address a = new Add
本文整理了Java中com.fasterxml.jackson.dataformat.yaml.YAMLFactory类的一些代码示例,展示了YAMLFactory类的具体用法。这些代码示例主要来源于
本文整理了Java中com.fasterxml.jackson.dataformat.yaml.YAMLMapper类的一些代码示例,展示了YAMLMapper类的具体用法。这些代码示例主要来源于Gi
本文整理了Java中com.fasterxml.jackson.dataformat.yaml.YAMLParser类的一些代码示例,展示了YAMLParser类的具体用法。这些代码示例主要来源于Gi
本文整理了Java中com.fasterxml.jackson.dataformat.yaml.YAMLGenerator类的一些代码示例,展示了YAMLGenerator类的具体用法。这些代码示例主
我正在使用 Power BI 来分析 Azure 搜索统计信息。原始数据由搜索流量分析工具收集在存储帐户 (blob) 上。要导入日期,我使用了 this教程。但是在应用查询更改时我收到错误。 有什么
我需要 jackson-dataformat-xml 方面的帮助。我需要序列化List使用XmlMapper将引号 " 编码到 xml 中→ " . 但是序列化后XmlMapper对所有其他
我的用例是将 Java POJO 转换为字符串,以便可以将其传递并发布到 AWS Kinesis Firehose Stream。 我正在编写这个convertToString(),但我无法找到转义分
我在使用 DataFormat 属性重新初始化我的 Controller 类时遇到问题。我的 Controller 类在这里找到 https://gist.github.com/anonymous/0
对不起标题... 所以我想从剪贴板中提取文本。此文本是从网页(在浏览器中)复制而来的。在我的例子中,它是一个包含一些数据的表格。 所以我用下面的代码提取了数据(它以字符串形式出现): IDataObj
本文整理了Java中com.fasterxml.jackson.dataformat.yaml.snakeyaml.Yaml类的一些代码示例,展示了Yaml类的具体用法。这些代码示例主要来源于Gith
本文整理了Java中org.nd4j.shade.jackson.dataformat.yaml.YAMLFactory类的一些代码示例,展示了YAMLFactory类的具体用法。这些代码示例主要来源
我是java新手,我想将csv文件转换为json 我使用以下代码示例将 csv 文件转换为 json 文件,问题是,我在“withSchema(bootstrap)”上遇到了一个错误,它说:“对于 O
我正在尝试使用 jackson-dataformat-xml 从 String 读取 XML: String data = ""+ ""+ "bb"+
这是我根据当前文化设置日期格式的模型。 我尽量避免像 DataFormatString = "{0:MM/dd/yyyy}" 这样的硬编码做下面的原因是为了得到当前的文化模式 [Required(E
我是一名优秀的程序员,十分优秀!