DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Related

  • Distributed Tracing System (Spring Cloud Sleuth + OpenZipkin)
  • Actuator Enhancements: Spring Framework 6.2 and Spring Boot 3.4
  • How Spring Boot Starters Integrate With Your Project
  • A Practical Guide to Creating a Spring Modulith Project

Trending

  • Pragmatica Aether: Let Java Be Java
  • Event-Driven Pipelines With Apache Pulsar and Go
  • Building a Spring AI Assistant With MCP Servers: A Step-by-Step Tutorial
  • Your AI Agent Tests Are Passing, But Your Agent Is Still Broken
  1. DZone
  2. Coding
  3. Frameworks
  4. Create a Spring Bean Using YAML

Create a Spring Bean Using YAML

In this quick article, we give you a look at how XML and YAML can be used to portray the same data, and how to programmatically make YAML and XML files.

By 
Nikesh Pathak user avatar
Nikesh Pathak
·
Jun. 13, 18 · Code Snippet
Likes (6)
Comment
Save
Tweet
Share
25.1K Views

Join the DZone community and get the full member experience.

Join For Free

Spring is a highly adopted annotation-based configuration and it is happily accepted by developer communities. And why not? No one wants to struggle with XML tags, but that's not enough when there is no XML configuration or the external file configuration is not as powerful as an XML configuration would be; especially when we write an application that has to alter behaviors without compilation.

But still, writing an XML configuration is not readable and not easily understood by beginners, so I've written experimental plugins for Spring Boot that convert YAML definitions to Spring Beans.

Here is an example of a bean definition in XML and the bean definition in YAML.

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">

    <bean id="customerImpl" class="com.example.yamlbeanExample.Customer">
        <property name="firstName">
            <value>Rohit</value>
        </property>
        <property name="lastName">
            <value>jain</value>
        </property>
        <property name="phone">
            <value>203428304230</value>
        </property>
        <property name="address" ref="addressImpl"></property>
    </bean>
    <bean id="addressImpl" class="com.example.yamlbeanExample.Address">
        <property name="address1">
            <value>gyan nagar</value>
        </property>
        <property name="address2">
            <value>sector 4</value>
        </property>
        <property name="pinCode">
            <value>313001</value>
        </property>
        <property name="city">
            <value>Pune</value>
        </property>
        <property name="state">
            <value>Maharastra</value>
        </property>
        <property name="country" ref="countryImpl"></property>
    </bean>
    <bean id="countryImpl" class="com.example.yamlbeanExample.Country">
        <property name="countryName">
            <value>India</value>
        </property>
        <property name="countryCode">
            <value>+91</value>
        </property>
        <property name="currency">
            <value>INR</value>
        </property>
    </bean>
</beans>
#spring-beans

customerImpl:
  class: com.example.yamlbeanExample.Customer
  properties:
    firstName: Rohit
    lastName: jain
    phone: 203428304230
    address: ref::addressImpl
addressImpl:
  class: com.example.yamlbeanExample.Address
  properties:
    address1: gyan nagar
    address2: sector 4
    pinCode: 313001
    city: pune
    state: Maharastra
    country: ref::countryImpl
countryImpl:
  class: com.example.yamlbeanExample.Country
  properties:
    countryName: India
    countryCode: 91
    currency: INR

You can check out a project on GitHub.

Note ->  YAML-spring-beans is a just experimental library, there are lots of features not included. Feedback will be much appreciated!

Spring Framework YAML Spring Boot

Published at DZone with permission of Nikesh Pathak. See the original article here.

Opinions expressed by DZone contributors are their own.

Related

  • Distributed Tracing System (Spring Cloud Sleuth + OpenZipkin)
  • Actuator Enhancements: Spring Framework 6.2 and Spring Boot 3.4
  • How Spring Boot Starters Integrate With Your Project
  • A Practical Guide to Creating a Spring Modulith Project

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

  • RSS
  • X
  • Facebook

ABOUT US

  • About DZone
  • Support and feedback
  • Community research

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 215
  • Nashville, TN 37211
  • [email protected]

Let's be friends:

  • RSS
  • X
  • Facebook