tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 Tools and Libs > SOJO > Simple Bean to Map Conversion

Simple Bean to Map Conversion 

SOJO (Simplified Old Java Objects) is a Java framework which converts object graph into a specific structure or representation. This requires the library sojo-1.0.0.jar to be in classpath. The following example shows using Converter class. It converts the given bean to map.

File Name  :  
com/bethecoder/tutorials/sojo/common/Student.java 
   
package com.bethecoder.tutorials.sojo.common;

public class Student {

  private String name;
  private int age;
  private String hobby;

  public Student() {
  }

  public Student(String name, int age, String hobby) {
    super();
    this.name = name;
    this.age = age;
    this.hobby = hobby;
  }

  public String getName() {
    return name;
  }
  public void setName(String name) {
    this.name = name;
  }
  public int getAge() {
    return age;
  }
  public void setAge(int age) {
    this.age = age;
  }
  public String getHobby() {
    return hobby;
  }
  public void setHobby(String hobby) {
    this.hobby = hobby;
  }
  
  public String toString() {
    return "Student[name = " + name + ", age = " + age + ", hobby = " + hobby + "]";
  }
}
   

File Name  :  
com/bethecoder/tutorials/sojo/tests/BeanToMapConversion.java 
Author  :  Sudhakar KV
Email  :  [email protected]
   
package com.bethecoder.tutorials.sojo.tests;

import net.sf.sojo.core.Converter;
import net.sf.sojo.core.conversion.ComplexBean2MapConversion;

import com.bethecoder.tutorials.sojo.common.Student;

public class BeanToMapConversion {

  /**
   @param args
   */
  public static void main(String[] args) {

    Student student = new Student("Sriram"2"Chess");
    
    Converter converter = new Converter();
    converter.addConversion(new ComplexBean2MapConversion());
    
    Object result = converter.convert(student);
    System.out.println(result);
    
  }

}
   

It gives the following output,
{~unique-id~=0, hobby=Chess, 
	class=com.bethecoder.tutorials.sojo.common.Student, name=Sriram, age=2}



 
  


  
bl  br