All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.fasterxml.jackson.module.jaxb.JaxbAnnotationModule Maven / Gradle / Ivy

Go to download

Ehcache is an open source, standards-based cache used to boost performance, offload the database and simplify scalability. Ehcache is robust, proven and full-featured and this has made it the most widely-used Java-based cache.

There is a newer version: 2.10.9.2
Show newest version
package com.fasterxml.jackson.module.jaxb;

import com.fasterxml.jackson.databind.module.SimpleModule;

/**
 * Module that can be registered to add support for JAXB annotations.
 * It does basically equivalent of
 *
 *   objectMapper.setAnnotationIntrospector(...);
 *
* with combination of {@link JaxbAnnotationIntrospector} and existing * default introspector(s) (if any), depending on configuration * (by default, JAXB annotations are used as {@link Priority#PRIMARY} * annotations). */ public class JaxbAnnotationModule extends SimpleModule { private static final long serialVersionUID = 1L; /** * Enumeration that defines how we use JAXB Annotations: either * as "primary" annotations (before any other already configured * introspector -- most likely default JacksonAnnotationIntrospector) or * as "secondary" annotations (after any other already configured * introspector(s)). *

* Default choice is PRIMARY *

* Note that if you want to use JAXB annotations as the only annotations, * you must directly set annotation introspector by calling * {@link com.fasterxml.jackson.databind.ObjectMapper#setAnnotationIntrospector}. */ public enum Priority { PRIMARY, SECONDARY; } /** * Priority to use when registering annotation introspector: default * value is {@link Priority#PRIMARY}. */ protected Priority _priority = Priority.PRIMARY; /* /********************************************************** /* Life cycle /********************************************************** */ public JaxbAnnotationModule() { super(PackageVersion.VERSION); } @Override public void setupModule(SetupContext context) { JaxbAnnotationIntrospector intr = new JaxbAnnotationIntrospector(context.getTypeFactory()); switch (_priority) { case PRIMARY: context.insertAnnotationIntrospector(intr); break; case SECONDARY: context.appendAnnotationIntrospector(intr); break; } } /* /********************************************************** /* Configuration /********************************************************** */ /** * Method for defining whether JAXB annotations should be added * as primary or secondary annotations (compared to already registered * annotations). *

* NOTE: method MUST be called before registering the module -- calling * afterwards will not have any effect on previous registrations. */ public JaxbAnnotationModule setPriority(Priority p) { _priority = p; return this; } public Priority getPriority() { return _priority; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy