spring

Spring c-namespace Example

Spring framework provides several namespaces to simplify the xml configuration. In spring, developers can use the c-namespace to inject the constructor-based dependency and an alternative to using the <constructor-arg> tag.

1. Introduction

  • Spring is an open-source framework created to address the complexity of an enterprise application development
  • One of the chief advantages of the Spring framework is its layered architecture, which allows the developer to be selective about which of its components they can use while providing a cohesive framework for J2EE application development
  • Spring framework provides support and integration to various technologies for e.g.:
      • Support for Transaction Management
      • Support for interaction with the different databases
      • Integration with the Object Relationship frameworks for e.g. Hibernate, iBatis etc
      • Support for Dependency Injection which means all the required dependencies will be resolved with the help of containers
      • Support for REST style web-services

1.1 Spring C-namespace

In spring, developers use the traditional <constructor-arg> tag to set the properties of any bean. To avoid this, developers can use the c-namespace to perform the constructor-based dependency injection. To use it, developers add a declaration in the spring configuration file i.e.

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:c="http://www.springframework.org/schema/c"
	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.xsd">
		
. . . . . .
		
</beans>

Benefits of C-namespace

  • Offers compactness and simplicity than the traditional <constructor-arg> tag
  • Reduces the number of angle brackets in the spring configuration file

Now, open up the Eclipse IDE and let us see how to implement this tag in the spring framework!

2. Spring c-namespace Example

Here is a systematic guide for implementing this tutorial in the spring framework.

2.1 Tools Used

We are using Eclipse Kepler SR2, JDK 8 and Maven. Having said that, we have tested the code against JDK 1.7 and it works well.

2.2 Project Structure

Firstly, let us review the final project structure, in case you are confused about where you should create the corresponding files or folder later!

Spring c-namespace - Application Project Structure
Fig. 1: Application Project Structure

2.3 Project Creation

This section will demonstrate how to create a Java-based Maven project with Eclipse. In Eclipse IDE, go to File -> New -> Maven Project.

Spring c-namespace - Spring c-namespace -
Fig. 2:Spring c-namespace –

In the New Maven Project window, it will ask you to select a project location. By default, ‘Use default workspace location’ will be selected. Select the ‘Create a simple project (skip archetype selection)’ checkbox and just click on the next button to proceed.

Spring c-namespace - Project Details
Fig. 3: Project Details

It will ask you to ‘Enter the group and the artifact id for the project’. We will input the details as shown in the below image. The version number will be by default: 0.0.1-SNAPSHOT.

Spring c-namespace - Archetype Parameters
Fig. 4: Archetype Parameters

Click on Finish and the creation of a maven project is completed. If you observe, it has downloaded the maven dependencies and a pom.xml file will be created. It will have the following code:

pom.xml

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<groupId>com.spring.namespace</groupId>
	<artifactId>SpringCnamespace</artifactId>
	<version>0.0.1-SNAPSHOT</version>
	<packaging>jar</packaging>
</project>

We can start adding the dependencies that developers want like Spring Core, Spring Context etc. Let us start building the application!

3. Application Building

Below are the steps involved in developing this application.

3.1 Maven Dependencies

Here, we specify the dependencies for the spring framework. Maven will automatically resolve the rest dependencies such as Spring Beans, Spring Core etc. The updated file will have the following code:

pom.xml

<project xmlns="http://maven.apache.org/POM/4.0.0"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<groupId>com.spring.namespace</groupId>
	<artifactId>SpringCnamespace</artifactId>
	<version>0.0.1-SNAPSHOT</version>
	<name>Spring c namespace example</name>
	<description>A tutorial to demonstrate the "c" namespace in the spring framework.</description>
	<dependencies>
		<!-- https://mvnrepository.com/artifact/org.springframework/spring-beans -->
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-beans</artifactId>
			<version>5.1.3.RELEASE</version>
		</dependency>
		<!-- https://mvnrepository.com/artifact/org.springframework/spring-context -->
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-context</artifactId>
			<version>5.1.3.RELEASE</version>
		</dependency>
	</dependencies>
	<build>
		<finalName>${project.artifactId}</finalName>
	</build>
</project>

3.2 Java Class Creation

Let us write the Java classes involved in this application.

3.2.1 Implementation of Address bean

We have a simple Address bean with two attributes. We are going to inject values into this bean using the c-namespace tag. Add the following code to the bean definition.

Address.java

package com.spring.model;

public class Address {

	private String city;
	private long zipcode;

	public Address(String city, long zipcode) {
		super();
		this.city = city;
		this.zipcode = zipcode;
	}

	@Override
	public String toString() {
		return "Address [city=" + city + ", zipcode=" + zipcode + "]";
	}
}

3.2.2 Implementation of Employee bean

We have a simple Employee bean with three attributes. We are going to inject values into this bean using the c-namespace tag. Add the following code to the bean definition.

Employee.java

package com.spring.model;

public class Employee {

	private String id;
	private String name;

	// Address is another bean containing employee's address information.
	private Address address;

	public Employee(String id, String name, Address address) {
		super();
		this.id = id;
		this.name = name;
		this.address = address;
	}

	@Override
	public String toString() {
		return "Employee [id=" + id + ", name=" + name + ", address=" + address + "]";
	}
}

3.2.3 Implementation of Utility Class

Add the following code to the implementation class for testing the c-namespace injection.

Demoapp.java

package com.spring.main;

import org.springframework.context.ConfigurableApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

import com.spring.model.Employee;

public class Demoapp {

	public static void main(String[] args) {

		// Reading configuration from the spring configuration file.
		ConfigurableApplicationContext   context = new ClassPathXmlApplicationContext("spring-namespace-config.xml");

		Employee myemployee = context.getBean("employeeBean", Employee.class);

		System.out.println(myemployee);

		// Closing the context object.
		context.close();
	}
}

3.3 Bean Configuration file

In the spring xml configuration, we’ll inject the properties of the bean using the c-namespace.

spring-namespace-config.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:c="http://www.springframework.org/schema/c"
	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.xsd">

	<!-- Old way of specifying the bean properties -->
	<!-- 
	<bean name="addrBean" class="com.spring.model.Address">
		<constructor-arg name="city" value="Noida" />
		<constructor-arg name="zipcode" value="201303" />
	</bean>

	<bean id="employeeBean" class="com.spring.model.Employee">
		<constructor-arg name="id" value="5678" />
		<constructor-arg name="name" value="Smith" />
		<constructor-arg name="address" ref="addrBean" />
	</bean> 
	-->

	<!-- **New way** | Specifying bean properties by using the spring "c" namespace -->
	<bean name="addrBean" class="com.spring.model.Address"
		c:city="Noida" c:zipcode="201303" />

	<bean name="employeeBean" class="com.spring.model.Employee"
		c:id="5678" c:name="Smith" c:address-ref="addrBean" />
</beans>

4. Run the Application

To execute the application, right click on the Demoapp class, Run As -> Java Application. Developers can debug the example and see what happens after every step. Enjoy!

Spring c-namespace - Run the Application
Fig. 5: Run the Application

5. Project Demo

The code shows the following log as the output of this tutorial.

Employee [id=5678, name=Smith, address=Address [city=Noida, zipcode=201303]]

That is all for this tutorial and I hope the article served you whatever you were looking for. Happy Learning and do not forget to share!

6. Conclusion

This post defines the implementation of the c-namespace in the spring framework and helps developers understand the basic configuration required to achieve this. Developers can download the sample application as an Eclipse project in the Downloads section.

7. Download the Eclipse Project

This was an example of spring c-namespace for beginners.

Download
You can download the full source code of this example here:  SpringCnamespace

Yatin

An experience full-stack engineer well versed with Core Java, Spring/Springboot, MVC, Security, AOP, Frontend (Angular & React), and cloud technologies (such as AWS, GCP, Jenkins, Docker, K8).
Subscribe
Notify of
guest

This site uses Akismet to reduce spam. Learn how your comment data is processed.

0 Comments
Inline Feedbacks
View all comments
Back to top button