功能说明
  • 双向转换: YAML和Properties格式互转
  • 自动格式化: 转换后自动美化格式
  • 一键复制: 快速复制转换结果
YAML格式示例
server: port: 8080 spring: application: name: myapp datasource: url: jdbc:mysql://localhost/db username: root password: 123456 jpa: hibernate: ddl-auto: update show-sql: true
Properties格式示例
server.port=8080 spring.application.name=myapp spring.datasource.url=jdbc:mysql://localhost/db spring.datasource.username=root spring.datasource.password=123456 spring.jpa.hibernate.ddl-auto=update spring.jpa.show-sql=true