当前位置: 首页>>代码示例>>Java>>正文


Java MrBeanModule类代码示例

本文整理汇总了Java中com.fasterxml.jackson.module.mrbean.MrBeanModule的典型用法代码示例。如果您正苦于以下问题:Java MrBeanModule类的具体用法?Java MrBeanModule怎么用?Java MrBeanModule使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


MrBeanModule类属于com.fasterxml.jackson.module.mrbean包,在下文中一共展示了MrBeanModule类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: createObjectMapper

import com.fasterxml.jackson.module.mrbean.MrBeanModule; //导入依赖的package包/类
/**
 * We construct a new jackson object mapper for the parser since we want to
 * add some configuration that we don't want to apply to our global object
 * mapper. This object mapper has the following features:
 *
 * 1. Does not fail if there is an unknown element in the json file, by default.
 * It simply ignores the element and continues reading. This can be reconfigured.
 *
 * 2. We use Mr. Bean for bean materialization during deserialization. Mr Bean
 * uses ASM to create classes at runtime that conform to your abstract class
 * or interface. This allows us to define an immutable interface for the
 * service descriptor and not have to write out all the concrete classes.
 *
 * 3. We add mixin classes to the object mapper to let jackson know of
 * property name remaps.
 * @return
 */
private ObjectMapper createObjectMapper() {
  final Map<Class<?>, Class<?>> mixins = new HashMap<Class<?>, Class<?>>() {{
    put(Parameter.class, ParameterMixin.class);
    put(ConfigGenerator.class, GeneratorMixin.class);
    put(DependencyExtension.class, DependencyExtensionMixin.class);
    put(PlacementRuleDescriptor.class, PlacementRuleMixin.class);
    put(SslServerDescriptor.class, SslServerDescriptorTypeMixin.class);
    put(SslClientDescriptor.class, SslClientDescriptorTypeMixin.class);
  }};

  ObjectMapper m = new ObjectMapper();
  m.registerModule(new SimpleModule() {
    @Override
    public void setupModule(SetupContext context) {
      for (Entry<Class<?>, Class<?>> entry : mixins.entrySet()) {
        context.setMixInAnnotations(entry.getKey(), entry.getValue());
      }
    }
  });
  m.registerModule(new MrBeanModule());
  m.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES,
          false);
  m.configure(Feature.ALLOW_COMMENTS, true);
  return m;
}
 
开发者ID:cloudera,项目名称:cm_ext,代码行数:43,代码来源:JsonSdlObjectMapper.java

示例2: getMapper

import com.fasterxml.jackson.module.mrbean.MrBeanModule; //导入依赖的package包/类
private static ObjectMapper getMapper() {
    ObjectMapper jacksonMapper = new ObjectMapper();
    AnnotationIntrospector primary = new JacksonAnnotationIntrospector();
    jacksonMapper.setAnnotationIntrospector(primary);
    jacksonMapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);
    jacksonMapper.registerModule(new MrBeanModule());
    return jacksonMapper;
}
 
开发者ID:apache,项目名称:rave,代码行数:9,代码来源:JsonUtils.java

示例3: createObjectMapper

import com.fasterxml.jackson.module.mrbean.MrBeanModule; //导入依赖的package包/类
@VisibleForTesting
public static ObjectMapper createObjectMapper() {
  final ObjectMapper objectMapper = new ObjectMapper();
  objectMapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);
  objectMapper.registerModule(new MrBeanModule());
  objectMapper.registerModule(new GuavaModule());
  return objectMapper;
}
 
开发者ID:facebook,项目名称:buck,代码行数:9,代码来源:BuckEventsHandler.java

示例4: getObject

import com.fasterxml.jackson.module.mrbean.MrBeanModule; //导入依赖的package包/类
@Override
public ObjectMapper getObject() throws Exception {
    ObjectMapper mapper = new ObjectMapper();
    mapper.registerModule(new MrBeanModule());
    return mapper;
}
 
开发者ID:apache,项目名称:rave,代码行数:7,代码来源:MaterializedBeanObjectMapperFactory.java

示例5: mrBeanModule

import com.fasterxml.jackson.module.mrbean.MrBeanModule; //导入依赖的package包/类
MrBeanModule mrBeanModule() {
    return new MrBeanModule();
}
 
开发者ID:opentable,项目名称:otj-jackson,代码行数:4,代码来源:OpenTableJacksonConfiguration.java


注:本文中的com.fasterxml.jackson.module.mrbean.MrBeanModule类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。