Package com.fasterxml.jackson.module.scala

Examples of com.fasterxml.jackson.module.scala.DefaultScalaModule


        config.setBasePath(swaggerProperties().getBasePath().get());
        ScannerFactory.setScanner(new DefaultJaxrsScanner());
        ClassReaders.setReader(new DefaultJaxrsApiReader());

        //TODO: move to another module?
        objectMapper.registerModule(new DefaultScalaModule());

        return config;
    }
View Full Code Here


@SuppressWarnings("unused")
public class ScalaObjectMapper extends ObjectMapper {

    public ScalaObjectMapper() {
        registerModule(new DefaultScalaModule());
    }
View Full Code Here

TOP

Related Classes of com.fasterxml.jackson.module.scala.DefaultScalaModule

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.