Example usage for com.fasterxml.jackson.module.guice ObjectMapperModule ObjectMapperModule

List of usage examples for com.fasterxml.jackson.module.guice ObjectMapperModule ObjectMapperModule

Introduction

In this page you can find the example usage for com.fasterxml.jackson.module.guice ObjectMapperModule ObjectMapperModule.

Prototype

public ObjectMapperModule() 

Source Link

Usage

From source file:com.googlecode.jmxtrans.guice.JmxTransModule.java

@Nonnull
public static Injector createInjector(@Nonnull JmxTransConfiguration configuration) {
    return Guice.createInjector(new JmxTransModule(configuration),
            new ObjectMapperModule().registerModule(new GuavaModule()));
}