com.talanlabs.componentjackson.ComponentBeanModule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of component-jackson Show documentation
Show all versions of component-jackson Show documentation
Module Jackson for Component Bean
The newest version!
package com.talanlabs.componentjackson;
import com.fasterxml.jackson.core.Version;
import com.fasterxml.jackson.databind.module.SimpleModule;
public class ComponentBeanModule extends SimpleModule {
public ComponentBeanModule() {
super("ComponentBeanModule", new Version(1, 0, 0, null,null,null));
this.addSerializer(new ComponentSerializer());
this.setValueInstantiators(new ComponentValueInstantiators());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy