Skip to content
| Marketplace
Sign in
Visual Studio Code>Formatters>JSON to Spring Config ConverterNew to Visual Studio Code? Get it now.
JSON to Spring Config Converter

JSON to Spring Config Converter

BalaBhaskar

|
2 installs
| (0) | Free
Convert JSON files to Spring Boot configuration formats (YAML or Properties)
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

JSON to Spring Config Converter

A VS Code extension that converts JSON files into Spring Boot configuration formats (YAML or Properties).

Features

  • Convert JSON to Spring Boot YAML format
  • Convert JSON to Spring Boot Properties format
  • Support for nested objects and arrays
  • Keyboard shortcut: Ctrl+Shift+J (Windows/Linux) or Cmd+Shift+J (Mac)

Usage

  1. Open a JSON file in VS Code
  2. Press Ctrl+Shift+P (Windows/Linux) or Cmd+Shift+P (Mac) to open the Command Palette
  3. Search for and select "Convert JSON to Spring Config"
  4. Choose your desired output format:
    • YAML: For application.yaml configuration files
    • Properties: For application.properties configuration files
  5. The converted configuration will appear in a new editor tab
  6. Save the file with your preferred filename

Example

Input JSON:

{
  "some.key1": "some-value",
  "some.key2": "some-value2"
}

Output - YAML format:

some:
  key1: some-value
  key2: some-value2

Output - Properties format:

some.key1=some-value
some.key2=some-value2
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft