Add HttpHandlerDecorator and fix test package

This commit is contained in:
Rossen Stoyanchev
2015-12-08 15:29:54 -05:00
parent 1dcaff8a5c
commit ef3560a55a
12 changed files with 65 additions and 32 deletions

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.http.server;
package org.springframework.http.server.reactive;
import org.junit.After;
import org.junit.Before;

View File

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

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.http.server;
package org.springframework.http.server.reactive;
import java.net.URI;
import java.util.Random;

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.http.server;
package org.springframework.http.server.reactive;
import java.util.concurrent.TimeUnit;
@@ -24,13 +24,6 @@ import org.reactivestreams.Publisher;
import reactor.Publishers;
import reactor.rx.Streams;
import org.springframework.http.server.reactive.FilterChainHttpHandler;
import org.springframework.http.server.reactive.HttpFilter;
import org.springframework.http.server.reactive.HttpFilterChain;
import org.springframework.http.server.reactive.HttpHandler;
import org.springframework.http.server.reactive.ServerHttpRequest;
import org.springframework.http.server.reactive.ServerHttpResponse;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import static org.mockito.Mockito.mock;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.http.server;
package org.springframework.http.server.reactive;
import java.nio.ByteBuffer;
import java.util.Random;
@@ -27,10 +27,6 @@ import org.reactivestreams.Subscription;
import reactor.io.buffer.Buffer;
import reactor.rx.Streams;
import org.springframework.http.server.reactive.HttpHandler;
import org.springframework.http.server.reactive.ServerHttpRequest;
import org.springframework.http.server.reactive.ServerHttpResponse;
import static org.junit.Assert.assertEquals;
/**

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.http.server;
package org.springframework.http.server.reactive;
import java.net.URI;
import java.util.Random;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.http.server;
package org.springframework.http.server.reactive;
import javax.xml.bind.JAXBContext;
import javax.xml.bind.Marshaller;
@@ -27,9 +27,6 @@ import reactor.io.buffer.Buffer;
import reactor.rx.Streams;
import org.springframework.http.MediaType;
import org.springframework.http.server.reactive.HttpHandler;
import org.springframework.http.server.reactive.ServerHttpRequest;
import org.springframework.http.server.reactive.ServerHttpResponse;
import org.springframework.util.BufferOutputStream;
import org.springframework.util.ByteBufferPublisherInputStream;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.http.server;
package org.springframework.http.server.reactive;
import java.net.URI;
import javax.xml.bind.annotation.XmlRootElement;
@@ -23,7 +23,6 @@ import org.junit.Test;
import org.springframework.http.RequestEntity;
import org.springframework.http.ResponseEntity;
import org.springframework.http.server.reactive.HttpHandler;
import org.springframework.web.client.RestTemplate;
/**

View File

@@ -31,7 +31,7 @@ import org.springframework.context.support.StaticApplicationContext;
import org.springframework.http.HttpStatus;
import org.springframework.http.RequestEntity;
import org.springframework.http.ResponseEntity;
import org.springframework.http.server.AbstractHttpHandlerIntegrationTests;
import org.springframework.http.server.reactive.AbstractHttpHandlerIntegrationTests;
import org.springframework.http.server.reactive.HttpHandler;
import org.springframework.http.server.reactive.ServerHttpRequest;
import org.springframework.http.server.reactive.ServerHttpResponse;

View File

@@ -51,7 +51,7 @@ import org.springframework.http.HttpStatus;
import org.springframework.http.MediaType;
import org.springframework.http.RequestEntity;
import org.springframework.http.ResponseEntity;
import org.springframework.http.server.AbstractHttpHandlerIntegrationTests;
import org.springframework.http.server.reactive.AbstractHttpHandlerIntegrationTests;
import org.springframework.http.server.reactive.HttpHandler;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestBody;