Criteria with Projection

In Hibernate-Criteria article , we have learned about Criteria where we use to load entire object based on certain restrictions.

Projections will become handy when we want to load the partial object.

Partial object means only few attributes will be loaded rather than all the attributes.

In some cases, it is unnecessary to load all the attributes of an object.

Main points to remember about Projections


Projection is an Interface defined in “org.hibernate.criterion” package

Projections is a class and it is a factory for producing the projection objects.

Projection is mainly used to retrieve partial object.

To add a Projection object to Criteria , we need to call a setProjection() method on Criteria.

We can add as many projection objects as we want but only latest object will be considered, so no use in adding multiple projection objects to criteria.

We need to create one projection object for specifying one property.

If we want more than one property to be included in the result, then we need to create multiple Projection objects one for each property and add all of them to ProjectionList and then we need to set ProjectionList object to Criteria.

Example:
Below example illustrates retrieving only one column of a table using Projection.

  1. Criteria criteria = session.createCriteria(Employee.class);
  2. Projection projection = Projections.property(“firstName”);
  3. criteria.setProjection(projection);
  4. List list = criteria.list();
Criteria criteria = session.createCriteria(Employee.class);
Projection projection = Projections.property(“firstName”);
criteria.setProjection(projection);
List list = criteria.list();

In the above example, we applied Projection on only one property “FirstName”.

The equivalent SQL query is “select firstName from Employee”.

If we want to apply projections to retrieve multiple properties, we can use ProjectionList as shown below

  1. Criteria criteria = session.createCriteria(Employee.class);
  2. Projection projection1 = Projections.property(“firstName”);
  3. Projection projection2 = Projections.property(“salary”);
  4. Projection projection3 = Projections.property(“age”);
  5.  
  6. ProjectionList projectionList = Projections.projectionList();
  7. projectionList.add(projection1);
  8. projectionList.add(projection2);
  9. projectionList.add(projection3);
  10. criteria.setProjection(projectionList);
  11. List list = criteria.list();
Criteria criteria = session.createCriteria(Employee.class);
Projection projection1 = Projections.property(“firstName”);
Projection projection2 = Projections.property(“salary”);
Projection projection3 = Projections.property(“age”);

ProjectionList projectionList = Projections.projectionList();
projectionList.add(projection1);
projectionList.add(projection2);
projectionList.add(projection3);
criteria.setProjection(projectionList);
List list = criteria.list();


Lets see the complete project on projections

Step 1

Create hibernate project

Please refer Hibernate setup in eclipse article on how to do it.

Project structure

Projections_ProjStructure

Step 2

Update pom.xml with Hibernate and Mysql dependencies

  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2.   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3.   <modelVersion>4.0.0</modelVersion>
  4.  
  5.   <groupId>HibernateProjections</groupId>
  6.   <artifactId>HibernateProjections</artifactId>
  7.   <version>0.0.1-SNAPSHOT</version>
  8.   <packaging>jar</packaging>
  9.  
  10.   <name>HibernateProjections</name>
  11.   <url>http://maven.apache.org</url>
  12.  
  13.   <properties>
  14.     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15.   </properties>
  16.  
  17.   <dependencies>
  18.  
  19.     <dependency>
  20.       <groupId>junit</groupId>
  21.       <artifactId>junit</artifactId>
  22.       <version>3.8.1</version>
  23.       <scope>test</scope>
  24.     </dependency>
  25.      <!-- https://mvnrepository.com/artifact/org.hibernate/hibernate-core -->
  26.         <dependency>
  27.             <groupId>org.hibernate</groupId>
  28.             <artifactId>hibernate-core</artifactId>
  29.             <version>5.2.6.Final</version>
  30.         </dependency>
  31.         <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
  32.         <dependency>
  33.             <groupId>mysql</groupId>
  34.             <artifactId>mysql-connector-java</artifactId>
  35.             <version>6.0.5</version>
  36.         </dependency>
  37.  
  38.   </dependencies>
  39. </project>
<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>HibernateProjections</groupId>
  <artifactId>HibernateProjections</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <packaging>jar</packaging>

  <name>HibernateProjections</name>
  <url>http://maven.apache.org</url>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>

  <dependencies>

    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
     <!-- https://mvnrepository.com/artifact/org.hibernate/hibernate-core -->
		<dependency>
			<groupId>org.hibernate</groupId>
			<artifactId>hibernate-core</artifactId>
			<version>5.2.6.Final</version>
		</dependency>
		<!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
		<dependency>
			<groupId>mysql</groupId>
			<artifactId>mysql-connector-java</artifactId>
			<version>6.0.5</version>
		</dependency>

  </dependencies>
</project>

Step 3

Create Employee class

  1. package com.kb.model;
  2.  
  3. import javax.persistence.Column;
  4. import javax.persistence.Entity;
  5. import javax.persistence.GeneratedValue;
  6. import javax.persistence.GenerationType;
  7. import javax.persistence.Id;
  8. import javax.persistence.Table;
  9.  
  10. @Entity
  11. @Table(name="Employee")
  12. public class Employee {
  13.     @Id
  14.     @GeneratedValue(strategy = GenerationType.SEQUENCE)
  15.     @Column(name = "Employee_Id")
  16.     private int employeeId;
  17.    
  18.     @Column(name = "FirstName")
  19.     private String firstName;
  20.    
  21.     @Column(name = "LastName")
  22.     private String lastName;
  23.    
  24.     @Column(name = "Age")
  25.     private int age;
  26.    
  27.     @Column(name = "Education")
  28.     private String education;
  29.    
  30.     @Column(name = "Salary")
  31.     private int salary;
  32.    
  33.     public int getEmployeeId() {
  34.         return employeeId;
  35.     }
  36.     public void setEmployeeId(int employeeId) {
  37.         this.employeeId = employeeId;
  38.     }
  39.     public String getFirstName() {
  40.         return firstName;
  41.     }
  42.     public void setFirstName(String firstName) {
  43.         this.firstName = firstName;
  44.     }
  45.     public String getLastName() {
  46.         return lastName;
  47.     }
  48.     public void setLastName(String lastName) {
  49.         this.lastName = lastName;
  50.     }
  51.     public int getAge() {
  52.         return age;
  53.     }
  54.     public void setAge(int age) {
  55.         this.age = age;
  56.     }
  57.     public String getEducation() {
  58.         return education;
  59.     }
  60.     public void setEducation(String education) {
  61.         this.education = education;
  62.     }
  63.     public int getSalary() {
  64.         return salary;
  65.     }
  66.     public void setSalary(int salary) {
  67.         this.salary = salary;
  68.     }
  69. }
package com.kb.model;

import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;

@Entity
@Table(name="Employee")
public class Employee {
	@Id
	@GeneratedValue(strategy = GenerationType.SEQUENCE)
	@Column(name = "Employee_Id")
	private int employeeId;
	
	@Column(name = "FirstName")
	private String firstName;
	
	@Column(name = "LastName")
	private String lastName;
	
	@Column(name = "Age")
	private int age;
	
	@Column(name = "Education")
	private String education;
	
	@Column(name = "Salary")
	private int salary;
	
	public int getEmployeeId() {
		return employeeId;
	}
	public void setEmployeeId(int employeeId) {
		this.employeeId = employeeId;
	}
	public String getFirstName() {
		return firstName;
	}
	public void setFirstName(String firstName) {
		this.firstName = firstName;
	}
	public String getLastName() {
		return lastName;
	}
	public void setLastName(String lastName) {
		this.lastName = lastName;
	}
	public int getAge() {
		return age;
	}
	public void setAge(int age) {
		this.age = age;
	}
	public String getEducation() {
		return education;
	}
	public void setEducation(String education) {
		this.education = education;
	}
	public int getSalary() {
		return salary;
	}
	public void setSalary(int salary) {
		this.salary = salary;
	}
}

We have specified Primary key as employeeId and generator class as “sequence” for automatic primary key generation.

Step 4

Create hibernate.cfg.xml

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE hibernate-configuration PUBLIC
  3.        "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
  4.        "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
  5.  
  6. <hibernate-configuration>
  7.  
  8.     <session-factory>
  9.  
  10.         <!-- Database connection properties -->
  11.         <property name="connection.driver_class">com.mysql.jdbc.Driver</property>
  12.         <property name="connection.url">jdbc:mysql://localhost/javainsimpleway</property>
  13.         <property name="connection.username">root</property>
  14.         <property name="connection.password">root</property>
  15.  
  16.         <!-- JDBC connection pool (using the built-in) -->
  17.         <property name="connection.pool_size">100</property>
  18.  
  19.         <!-- SQL dialect -->
  20.         <property name="dialect">org.hibernate.dialect.MySQLDialect</property>
  21.  
  22.         <!-- Disable the second-level cache -->
  23.         <property name="cache.provider_class">org.hibernate.cache.internal.NoCacheProvider</property>
  24.  
  25.         <!-- Echo all executed SQL to stdout -->
  26.         <property name="show_sql">true</property>
  27.  
  28.         <!-- Format the generated Sql -->
  29.         <property name="format_sql">false</property>
  30.  
  31.         <!-- Dont Drop and re-create the database schema on startup,Just update
  32.             it -->
  33.         <property name="hbm2ddl.auto">update</property>
  34.  
  35.         <mapping class="com.kb.model.Employee" />
  36.  
  37.     </session-factory>
  38.  
  39. </hibernate-configuration>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC
       "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
       "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">

<hibernate-configuration>

	<session-factory>

		<!-- Database connection properties -->
		<property name="connection.driver_class">com.mysql.jdbc.Driver</property>
		<property name="connection.url">jdbc:mysql://localhost/javainsimpleway</property>
		<property name="connection.username">root</property>
		<property name="connection.password">root</property>

		<!-- JDBC connection pool (using the built-in) -->
		<property name="connection.pool_size">100</property>

		<!-- SQL dialect -->
		<property name="dialect">org.hibernate.dialect.MySQLDialect</property>

		<!-- Disable the second-level cache -->
		<property name="cache.provider_class">org.hibernate.cache.internal.NoCacheProvider</property>

		<!-- Echo all executed SQL to stdout -->
		<property name="show_sql">true</property>

		<!-- Format the generated Sql -->
		<property name="format_sql">false</property>

		<!-- Dont Drop and re-create the database schema on startup,Just update 
			it -->
		<property name="hbm2ddl.auto">update</property>

		<mapping class="com.kb.model.Employee" />

	</session-factory>

</hibernate-configuration>


We have defined all the database configuration in this file

hbm2ddl.auto property is defined in the config file which helps in automatic creation of tables in the database based on the mapping.

We have also provided the mapping class name using “mapping” tag.

Step 5

Create Hibernate util class

  1. package com.kb.util;
  2.  
  3. import org.hibernate.SessionFactory;
  4. import org.hibernate.cfg.Configuration;
  5.  
  6. public class HibernateUtil {
  7.     private static final SessionFactory sessionFactory = buildSessionFactory();
  8.  
  9.     private static SessionFactory buildSessionFactory() {
  10.         try {
  11.             // Create the SessionFactory from hibernate.cfg.xml
  12.             return new Configuration().configure().buildSessionFactory();
  13.         } catch (Throwable ex) {
  14.             // Make sure you log the exception to track it
  15.             System.err.println("SessionFactory creation failed." + ex);
  16.             throw new ExceptionInInitializerError(ex);
  17.         }
  18.     }
  19.  
  20.     public static SessionFactory getSessionFactory() {
  21.         return sessionFactory;
  22.     }
  23.    
  24.     public static void shutdown() {
  25.         // Optional but can be used to Close caches and connection pools
  26.         getSessionFactory().close();
  27.     }
  28.  
  29. }
package com.kb.util;

import org.hibernate.SessionFactory;
import org.hibernate.cfg.Configuration;

public class HibernateUtil {
	private static final SessionFactory sessionFactory = buildSessionFactory();

    private static SessionFactory buildSessionFactory() {
        try {
            // Create the SessionFactory from hibernate.cfg.xml
            return new Configuration().configure().buildSessionFactory();
        } catch (Throwable ex) {
            // Make sure you log the exception to track it
            System.err.println("SessionFactory creation failed." + ex);
            throw new ExceptionInInitializerError(ex);
        }
    }

    public static SessionFactory getSessionFactory() {
        return sessionFactory;
    }
    
    public static void shutdown() {
    	// Optional but can be used to Close caches and connection pools
    	getSessionFactory().close();
    }

}

Step 6

Create PopulateData.java file to Populate Employee Table with initial data

  1. package com.kb.db;
  2.  
  3. import org.hibernate.Session;
  4. import org.hibernate.SessionFactory;
  5. import org.hibernate.Transaction;
  6.  
  7. import com.kb.model.Employee;
  8. import com.kb.util.HibernateUtil;
  9.  
  10. public class PopulateData {
  11. public static void main(String[] args) {
  12.  
  13.     // Get session factory using Hibernate Util class
  14.     SessionFactory sf = HibernateUtil.getSessionFactory();
  15.     // Get session from Sesson factory
  16.     Session session = sf.openSession();
  17.  
  18.     // Begin transaction
  19.     Transaction t = session.beginTransaction();
  20.    
  21.     //Create Employee  data
  22.     Employee employee1 = new Employee();
  23.     employee1.setFirstName("John");
  24.     employee1.setLastName("KC");
  25.     employee1.setAge(28);
  26.     employee1.setEducation("PG");
  27.     employee1.setSalary(25000);
  28.    
  29.     Employee employee2 = new Employee();
  30.     employee2.setFirstName("Jacob");
  31.     employee2.setLastName("JC");
  32.     employee2.setAge(30);
  33.     employee2.setEducation("PG");
  34.     employee2.setSalary(30000);
  35.    
  36.     Employee employee3 = new Employee();
  37.     employee3.setFirstName("Martin");
  38.     employee3.setLastName("A");
  39.     employee3.setAge(24);
  40.     employee3.setEducation("UG");
  41.     employee3.setSalary(20000);
  42.    
  43.     Employee employee4 = new Employee();
  44.     employee4.setFirstName("Peter");
  45.     employee4.setLastName("M");
  46.     employee4.setAge(25);
  47.     employee4.setEducation("UG");
  48.     employee4.setSalary(22000);
  49.    
  50.     Employee employee5 = new Employee();
  51.     employee5.setFirstName("Roshan");
  52.     employee5.setLastName("B");
  53.     employee5.setAge(29);
  54.     employee5.setEducation("PG");
  55.     employee5.setSalary(45000);
  56.    
  57.    
  58.     session.save(employee1);
  59.     session.save(employee2);
  60.     session.save(employee3);
  61.     session.save(employee4);
  62.     session.save(employee5);
  63.  
  64.     // Commit the transaction and close the session
  65.     t.commit();
  66.    
  67.     session.close();
  68.     System.out.println("successfully persisted Employee details");
  69.  
  70.    }
  71.  
  72. }
package com.kb.db;

import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.Transaction;

import com.kb.model.Employee;
import com.kb.util.HibernateUtil;

public class PopulateData {
public static void main(String[] args) {

	// Get session factory using Hibernate Util class
	SessionFactory sf = HibernateUtil.getSessionFactory();
	// Get session from Sesson factory
	Session session = sf.openSession();

	// Begin transaction
	Transaction t = session.beginTransaction();
	
	//Create Employee  data
	Employee employee1 = new Employee();
	employee1.setFirstName("John");
	employee1.setLastName("KC");
	employee1.setAge(28);
	employee1.setEducation("PG");
	employee1.setSalary(25000);
	
	Employee employee2 = new Employee();
	employee2.setFirstName("Jacob");
	employee2.setLastName("JC");
	employee2.setAge(30);
	employee2.setEducation("PG");
	employee2.setSalary(30000);
	
	Employee employee3 = new Employee();
	employee3.setFirstName("Martin");
	employee3.setLastName("A");
	employee3.setAge(24);
	employee3.setEducation("UG");
	employee3.setSalary(20000);
	
	Employee employee4 = new Employee();
	employee4.setFirstName("Peter");
	employee4.setLastName("M");
	employee4.setAge(25);
	employee4.setEducation("UG");
	employee4.setSalary(22000);
	
	Employee employee5 = new Employee();
	employee5.setFirstName("Roshan");
	employee5.setLastName("B");
	employee5.setAge(29);
	employee5.setEducation("PG");
	employee5.setSalary(45000);
	
	
	session.save(employee1);
	session.save(employee2);
	session.save(employee3);
	session.save(employee4);
	session.save(employee5);

	// Commit the transaction and close the session
	t.commit();
	
	session.close();
	System.out.println("successfully persisted Employee details");

   }

}

In this class, we are persisting 5 Employee records

Step 7

Lets Create Main class to perform projection operations

  1. package com.kb.db;
  2.  
  3. import java.util.Iterator;
  4. import java.util.List;
  5.  
  6. import org.hibernate.Criteria;
  7. import org.hibernate.Session;
  8. import org.hibernate.SessionFactory;
  9. import org.hibernate.criterion.Projection;
  10. import org.hibernate.criterion.ProjectionList;
  11. import org.hibernate.criterion.Projections;
  12. import org.hibernate.criterion.Restrictions;
  13.  
  14. import com.kb.model.Employee;
  15. import com.kb.util.HibernateUtil;
  16.  
  17. public class ProjectionExample {
  18.     @SuppressWarnings("deprecation")
  19.     public static void main(String[] args) {
  20.         SessionFactory sf = HibernateUtil.getSessionFactory();
  21.         Session session = sf.openSession();
  22.  
  23.         Criteria criteria = session.createCriteria(Employee.class);
  24.         Projection projection = Projections.property("firstName");
  25.         criteria.setProjection(projection);
  26.         List<String> firstNameList = criteria.list();
  27.         System.out.println("All Employee records with only first name column");
  28.         for (String firstName : firstNameList) {
  29.             System.out.println("First Name :" + firstName);
  30.         }
  31.  
  32.         criteria = session.createCriteria(Employee.class);
  33.         Projection projection1 = Projections.property("firstName");
  34.         Projection projection2 = Projections.property("salary");
  35.         Projection projection3 = Projections.property("age");
  36.  
  37.         ProjectionList projectionList = Projections.projectionList();
  38.         projectionList.add(projection1);
  39.         projectionList.add(projection2);
  40.         projectionList.add(projection3);
  41.  
  42.         criteria.setProjection(projectionList);
  43.  
  44.         List empList = criteria.list();
  45.  
  46.         System.out.println("All the empoyees with first name,salary and age columns");
  47.         Iterator iterator = empList.iterator();
  48.  
  49.         while (iterator.hasNext()) {
  50.             Object[] obj = (Object[]) iterator.next();
  51.             System.out.println("First Name" + obj[0] + " Salary : " + obj[1] + " Age : " + obj[2]);
  52.         }
  53.  
  54.         criteria = session.createCriteria(Employee.class);
  55.         criteria.setProjection(Projections.rowCount());
  56.         List<Long> result = criteria.list();
  57.         System.out.println("Total number of employees :" + result);
  58.  
  59.         criteria = session.createCriteria(Employee.class);
  60.         double sumSalary = (Long)              
  61.                     session.createCriteria(Employee.class).setProjection(Projections.sum("salary")).uniqueResult();
  62.         System.out.println("Sum of Salary of all employees : " + sumSalary);
  63.  
  64.         // Adding both restrictions and projection on criteria
  65.         criteria = session.createCriteria(Employee.class);
  66.         criteria.add(Restrictions.gt("age", 25));
  67.         criteria.setProjection(projectionList);
  68.         empList = criteria.list();
  69.         Iterator iterator1 = empList.iterator();
  70.                 System.out.println("All employees whose age is greater than 25");
  71.         while (iterator1.hasNext()) {
  72.             Object[] obj = (Object[]) iterator1.next();
  73.             System.out.println("First Name" + obj[0] + " Salary : " + obj[1] + " Age : " + obj[2]);
  74.         }
  75.  
  76.         session.close();
  77.     }
  78.  
  79. }
package com.kb.db;

import java.util.Iterator;
import java.util.List;

import org.hibernate.Criteria;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.criterion.Projection;
import org.hibernate.criterion.ProjectionList;
import org.hibernate.criterion.Projections;
import org.hibernate.criterion.Restrictions;

import com.kb.model.Employee;
import com.kb.util.HibernateUtil;

public class ProjectionExample {
	@SuppressWarnings("deprecation")
	public static void main(String[] args) {
		SessionFactory sf = HibernateUtil.getSessionFactory();
		Session session = sf.openSession();

		Criteria criteria = session.createCriteria(Employee.class);
		Projection projection = Projections.property("firstName");
		criteria.setProjection(projection);
		List<String> firstNameList = criteria.list();
		System.out.println("All Employee records with only first name column");
		for (String firstName : firstNameList) {
			System.out.println("First Name :" + firstName);
		}

		criteria = session.createCriteria(Employee.class);
		Projection projection1 = Projections.property("firstName");
		Projection projection2 = Projections.property("salary");
		Projection projection3 = Projections.property("age");

		ProjectionList projectionList = Projections.projectionList();
		projectionList.add(projection1);
		projectionList.add(projection2);
		projectionList.add(projection3);

		criteria.setProjection(projectionList);

		List empList = criteria.list();

		System.out.println("All the empoyees with first name,salary and age columns");
		Iterator iterator = empList.iterator();

		while (iterator.hasNext()) {
			Object[] obj = (Object[]) iterator.next();
			System.out.println("First Name" + obj[0] + " Salary : " + obj[1] + " Age : " + obj[2]);
		}

		criteria = session.createCriteria(Employee.class);
		criteria.setProjection(Projections.rowCount());
		List<Long> result = criteria.list();
		System.out.println("Total number of employees :" + result);

		criteria = session.createCriteria(Employee.class);
		double sumSalary = (Long)               
                    session.createCriteria(Employee.class).setProjection(Projections.sum("salary")).uniqueResult();
		System.out.println("Sum of Salary of all employees : " + sumSalary);

		// Adding both restrictions and projection on criteria
		criteria = session.createCriteria(Employee.class);
		criteria.add(Restrictions.gt("age", 25));
		criteria.setProjection(projectionList);
		empList = criteria.list();
		Iterator iterator1 = empList.iterator();
                System.out.println("All employees whose age is greater than 25");
		while (iterator1.hasNext()) {
			Object[] obj = (Object[]) iterator1.next();
			System.out.println("First Name" + obj[0] + " Salary : " + obj[1] + " Age : " + obj[2]);
		}

		session.close();
	}

}

Step 8

Run PopulateData.java class to create the initial data

Step 9

Check the output in MYSQL DB

E:\MySql_Install\bin
Mysql –u root –p
Enter password

Use javainsimpleway;

Select * from Employee;

populateAggregateDataOutput

We can see that Emploeyee table has 5 records.

Step 10

Run ProjectionExample.java

Output


Download this project HibernateProjections.zip

About the Author

Founder of javainsimpleway.com
I love Java and open source technologies and very much passionate about software development.
I like to share my knowledge with others especially on technology 🙂
I have given all the examples as simple as possible to understand for the beginners.
All the code posted on my blog is developed,compiled and tested in my development environment.
If you find any mistakes or bugs, Please drop an email to kb.knowledge.sharing@gmail.com

Connect with me on Facebook for more updates

Share this article on