All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.zodiac.autoconfigure.web.server.ReactiveWebServerAutoConfiguration Maven / Gradle / Ivy

There is a newer version: 1.6.8
Show newest version
package org.zodiac.autoconfigure.web.server;

import org.springframework.boot.SpringBootConfiguration;
import org.springframework.boot.autoconfigure.AutoConfigureBefore;
import org.springframework.boot.autoconfigure.condition.ConditionalOnWebApplication;
import org.springframework.boot.autoconfigure.condition.ConditionalOnWebApplication.Type;
import org.springframework.boot.autoconfigure.web.reactive.ReactiveWebServerFactoryAutoConfiguration;
import org.springframework.context.annotation.Import;

@SpringBootConfiguration
@ConditionalOnWebApplication(type = Type.REACTIVE)
@AutoConfigureBefore(value = {ReactiveWebServerFactoryAutoConfiguration.class})
@Import(value = {ReactiveWebServerCustomizerConfiguration.TomcatConfiguration.class,
    ReactiveWebServerCustomizerConfiguration.JettyConfiguration.class,
    ReactiveWebServerCustomizerConfiguration.UndertowConfiguration.class})
public class ReactiveWebServerAutoConfiguration {

    public ReactiveWebServerAutoConfiguration() {
        super();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy