Which file format is generally used in Spring Boot for configuring application properties?

  • JSON
  • Properties
  • XML
  • YAML
In Spring Boot, YAML (YAML Ain't Markup Language) is the commonly used format for configuring application properties. YAML offers a more human-readable and concise way to define properties compared to XML or JSON. While XML and JSON are supported in some cases, YAML is the preferred choice for Spring Boot.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *