|
|
|
@ -1,5 +1,5 @@
|
|
|
|
|
/*
|
|
|
|
|
* Copyright 2012-2019 the original author or authors.
|
|
|
|
|
* Copyright 2012-2020 the original author or authors.
|
|
|
|
|
*
|
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
@ -16,9 +16,8 @@
|
|
|
|
|
|
|
|
|
|
package org.springframework.boot.autoconfigure.websocket.reactive;
|
|
|
|
|
|
|
|
|
|
import java.util.Collections;
|
|
|
|
|
|
|
|
|
|
import org.apache.tomcat.websocket.server.WsSci;
|
|
|
|
|
|
|
|
|
|
import org.springframework.boot.web.embedded.tomcat.TomcatReactiveWebServerFactory;
|
|
|
|
|
import org.springframework.boot.web.server.WebServerFactoryCustomizer;
|
|
|
|
|
import org.springframework.core.Ordered;
|
|
|
|
@ -34,8 +33,7 @@ public class TomcatWebSocketReactiveWebServerCustomizer
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void customize(TomcatReactiveWebServerFactory factory) {
|
|
|
|
|
factory.addContextCustomizers((context) ->
|
|
|
|
|
context.addServletContainerInitializer(new WsSci(), Collections.emptySet()));
|
|
|
|
|
factory.addContextCustomizers((context) -> context.addServletContainerInitializer(new WsSci(), null));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|