Jackson Glossary: BeanSerializer
Package: org.codehaus.jackson.map.ser
Jar: jackson-mapper
Role
BeanSerializer is a JsonSerializer implementation used for handling general POJO types. Instances are created by BeanSerializerFactory, and are used in cases where there are no explicit standard or custom serializers registered for the type in question.
Usage
Instances are usually constructed by BeanSerializerFactory, but it is also possible to create instances directly. The most common construction mechanism is by sub-classing both BeanSerializer and BeanSerializerFactory, and override method(s) that construct instances.
Back to Jackson Term Glossary
