Move HttpServer related classes back to src/main/java

This is needed in order to be able to use Spring Reactive in standalone
applications. These are temporary classes that will return in
src/test/java when Spring Boot support for Reactive applications will
be implemented.
This commit is contained in:
Sebastien Deleuze 2015-11-24 18:11:44 +01:00
parent 4a3c0bc3b6
commit dc57e2621c
9 changed files with 18 additions and 7 deletions

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.http.server;
package org.springframework.http.server.support;
import org.springframework.beans.factory.InitializingBean;

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.http.server;
package org.springframework.http.server.support;
import org.springframework.http.server.ReactiveHttpHandler;

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.http.server;
package org.springframework.http.server.support;
import org.eclipse.jetty.server.Server;
import org.eclipse.jetty.server.ServerConnector;

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.http.server;
package org.springframework.http.server.support;
import reactor.io.buffer.Buffer;
import reactor.io.net.ReactiveNet;

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.http.server;
package org.springframework.http.server.support;
import io.netty.buffer.ByteBuf;

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.http.server;
package org.springframework.http.server.support;
import java.io.File;

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.http.server;
package org.springframework.http.server.support;
import org.springframework.beans.factory.InitializingBean;
import org.springframework.util.Assert;

View File

@ -0,0 +1,5 @@
/**
* This package contains temporary interfaces and classes for running embedded servers.
* They are expected to be replaced by an upcoming Spring Boot support.
*/
package org.springframework.http.server.support;

View File

@ -21,6 +21,12 @@ import org.junit.Before;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
import org.springframework.http.server.support.HttpServer;
import org.springframework.http.server.support.JettyHttpServer;
import org.springframework.http.server.support.ReactorHttpServer;
import org.springframework.http.server.support.RxNettyHttpServer;
import org.springframework.http.server.support.TomcatHttpServer;
import org.springframework.http.server.support.UndertowHttpServer;
import org.springframework.util.SocketUtils;