yaml 和 properties 互相转换
所属分类 skill
浏览量 890
yaml格式坑人
服务器上命令行编辑 yaml 配置 ,真的呵呵呵
YAML大小写敏感
使用缩进代表层级关系
缩进只能使用空格,不能使用TAB,不要求空格个数,只需要相同层级左对齐(一般2个或4个空格)
如果字符串包含特殊字符,放在引号里
属性冒号后面一定要有空格!!!
yaml 和 properties 互转
依赖库
jackson-dataformat-yaml
jackson-dataformat-properties
TransferUtil
public static String yml2properties(String str) throws Exception
public static String properties2yaml(String str) throws Exception
完整代码
https://gitee.com/dyyx/demos/blob/master/ymlprop/src/main/java/dyyx/util/TransferUtil.java
YAML简单介绍
上一篇
下一篇
SpringBoot admin 简介
spring如何解决循环依赖
Spring的BeanFactoryPostProcessor和BeanPostProcessor
springboot应用首次访问慢解决方法
SpringMVC consumes 和 produces 用法
SpringMVC 数据验证