Skip to content

thanosa75/hibernate-jackson

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

hibernate-jackson Build Status

Read/Write an object to JSON / JSON to object into a database table field (declared as a string column).

Implementing a hibernate UserType by using the jackson object mappper to do a fast serialize/deserialize of a json string representation.

Check the src/test folder to see a full example.

More information how to implements a user type

Exemple with a Simple Object

Create your own implementation by extends JacksonUserType

//Need to be serializable to manage the different case scenario of the user type
public class Label implements Serializable{
    private String value;
    private String lang;

    public Label() {
    }

    ...getter/setter
}

public class LabelUserType extends JacksonUserType {
     @Override
    public Class returnedClass() {
        return Label.class;
    }
}

@Entity
@Table(name="ITEMS")
public class Item {
	@Id
	@GeneratedValue(strategy = GenerationType.AUTO)
	private Long id;

    @Type(type = "org.rayjars.hibernate.LabelUserType")
    @Column(name = "label")
    private Label label;

    ...getter/setter
}

And now you can persist your object...with your hibernate session / jpa repository

Exemple with a object collection

public class LabelsUserType extends JacksonListUserType {
    @Override
    public Class returnedClass() {
        return Label.class;
    }
}

@Entity
@Table(name="ORDERS")
public class Order {

	@Id
	@GeneratedValue(strategy = GenerationType.AUTO)
	private Long id;

    @Type(type = "org.rayjars.hibernate.LabelsUserType")
    @Column(name = "labels")
	private List<Label> labels = new ArrayList<Label>();

	 ...getter/setter
}

About

Persist an Object to JSON in an hibernate field

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages