Package io.dropwizard.jersey.errors

Examples of io.dropwizard.jersey.errors.EarlyEofExceptionMapper


            // create a subclass to pin it to Throwable
            register(new LoggingExceptionMapper<Throwable>() {
            });
            register(new ConstraintViolationExceptionMapper());
            register(new JsonProcessingExceptionMapper());
            register(new EarlyEofExceptionMapper());
            register(new ComponentLoggingListener(this));
        }
        register(new InstrumentedResourceMethodApplicationListener(metricRegistry));
        register(CacheControlledResponseFeature.class);
        register(OptionalMessageBodyWriter.class);
View Full Code Here

TOP

Related Classes of io.dropwizard.jersey.errors.EarlyEofExceptionMapper

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.