Package io.druid.jackson

Examples of io.druid.jackson.JacksonModule


{
  public static Injector makeStartupInjector()
  {
    return Guice.createInjector(
        new DruidGuiceExtensions(),
        new JacksonModule(),
        new PropertiesModule(Arrays.asList("global.runtime.properties", "runtime.properties")),
        new ConfigModule(),
        new Module()
        {
          @Override
View Full Code Here


  public static Injector makeStartupInjectorWithModules(Iterable<Module> modules)
  {
    List<Module> theModules = Lists.newArrayList();
    theModules.add(new DruidGuiceExtensions());
    theModules.add(new JacksonModule());
    theModules.add(new PropertiesModule(Arrays.asList("global.runtime.properties", "runtime.properties")));
    theModules.add(new ConfigModule());
    theModules.add(
        new Module()
        {
View Full Code Here

TOP

Related Classes of io.druid.jackson.JacksonModule

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.