Example usage for org.springframework.boot.autoconfigure.jersey ResourceConfigCustomizer customize

List of usage examples for org.springframework.boot.autoconfigure.jersey ResourceConfigCustomizer customize

Introduction

In this page you can find the example usage for org.springframework.boot.autoconfigure.jersey ResourceConfigCustomizer customize.

Prototype

void customize(ResourceConfig config);

Source Link

Document

Customize the resource config.

Usage

From source file:org.springframework.boot.autoconfigure.jersey.JerseyAutoConfiguration.java

private void customize() {
    if (this.customizers != null) {
        AnnotationAwareOrderComparator.sort(this.customizers);
        for (ResourceConfigCustomizer customizer : this.customizers) {
            customizer.customize(this.config);
        }//from w w  w .  j  ava2s.  c o m
    }
}