Skip to content

Commit

Permalink
fix ReactiveWebServerFactoryAutoConfiguration not support sprintboot …
Browse files Browse the repository at this point in the history
…1.x (#927)
  • Loading branch information
lvjing2 authored May 11, 2024
1 parent 07009d7 commit 41d3cda
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
import org.springframework.boot.autoconfigure.AutoConfigureBefore;
import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
import org.springframework.boot.autoconfigure.web.reactive.ReactiveWebServerFactoryAutoConfiguration;
import org.springframework.boot.web.embedded.netty.NettyReactiveWebServerFactory;
import org.springframework.boot.web.embedded.netty.NettyRouteProvider;
import org.springframework.boot.web.embedded.netty.NettyServerCustomizer;
Expand All @@ -37,7 +36,7 @@

@Configuration
@ConditionalOnArkEnabled
@AutoConfigureBefore(ReactiveWebServerFactoryAutoConfiguration.class)
@AutoConfigureBefore(name = { "org.springframework.boot.autoconfigure.web.reactive.ReactiveWebServerFactoryAutoConfiguration" })
public class ArkReactiveAutoConfiguration {

@Configuration
Expand Down

0 comments on commit 41d3cda

Please sign in to comment.