本文整理汇总了Java中org.springframework.http.server.reactive.ReactorHttpHandlerAdapter类的典型用法代码示例。如果您正苦于以下问题:Java ReactorHttpHandlerAdapter类的具体用法?Java ReactorHttpHandlerAdapter怎么用?Java ReactorHttpHandlerAdapter使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
ReactorHttpHandlerAdapter类属于org.springframework.http.server.reactive包,在下文中一共展示了ReactorHttpHandlerAdapter类的14个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: httpServer
import org.springframework.http.server.reactive.ReactorHttpHandlerAdapter; //导入依赖的package包/类
@Bean public HttpServer httpServer(RouterFunction<?> routerFunction) {
HttpHandler httpHandler = RouterFunctions.toHttpHandler(routerFunction);
ReactorHttpHandlerAdapter adapter = new ReactorHttpHandlerAdapter(httpHandler);
HttpServer server = HttpServer
.create(serverConfigBean.getAddress(), serverConfigBean.getPort());
server.newHandler(adapter);
return server;
}
示例2: startReactorServer
import org.springframework.http.server.reactive.ReactorHttpHandlerAdapter; //导入依赖的package包/类
private void startReactorServer() {
RouterFunction<?> route = routingFunction();
HttpHandler httpHandler = toHttpHandler(route);
ReactorHttpHandlerAdapter adapter = new ReactorHttpHandlerAdapter(httpHandler);
HttpServer server = HttpServer.create(HOST, PORT);
server.newHandler(adapter).block();
}
示例3: nettyContext
import org.springframework.http.server.reactive.ReactorHttpHandlerAdapter; //导入依赖的package包/类
@Bean
public NettyContext nettyContext(ApplicationContext context) {
HttpHandler handler = DispatcherHandler.toHttpHandler(context);
ReactorHttpHandlerAdapter adapter = new ReactorHttpHandlerAdapter(handler);
HttpServer httpServer = HttpServer.create("localhost", Integer.valueOf("8095"));
return httpServer.newHandler(adapter).block();
}
示例4: nettyContext
import org.springframework.http.server.reactive.ReactorHttpHandlerAdapter; //导入依赖的package包/类
@Bean
public NettyContext nettyContext(ApplicationContext context) {
HttpHandler handler = DispatcherHandler.toHttpHandler(context);
ReactorHttpHandlerAdapter adapter = new ReactorHttpHandlerAdapter(handler);
HttpServer httpServer = HttpServer.create("localhost", Integer.valueOf("8908"));
return httpServer.newHandler(adapter).block();
}
示例5: nettyContext
import org.springframework.http.server.reactive.ReactorHttpHandlerAdapter; //导入依赖的package包/类
@Bean
public NettyContext nettyContext(ApplicationContext context) {
HttpHandler handler = DispatcherHandler.toHttpHandler(context);
ReactorHttpHandlerAdapter adapter = new ReactorHttpHandlerAdapter(handler);
HttpServer httpServer = HttpServer.create("localhost", Integer.valueOf("8901"));
return httpServer.newHandler(adapter).block();
}
示例6: nettyContext
import org.springframework.http.server.reactive.ReactorHttpHandlerAdapter; //导入依赖的package包/类
@Bean
public NettyContext nettyContext(ApplicationContext context) {
HttpHandler handler = DispatcherHandler.toHttpHandler(context);
ReactorHttpHandlerAdapter adapter = new ReactorHttpHandlerAdapter(handler);
HttpServer httpServer = HttpServer.create("localhost", Integer.valueOf("9007"));
return httpServer.newHandler(adapter).block();
}
示例7: nettyContext
import org.springframework.http.server.reactive.ReactorHttpHandlerAdapter; //导入依赖的package包/类
@Bean
public NettyContext nettyContext(ApplicationContext context) {
HttpHandler handler = DispatcherHandler.toHttpHandler(context);
ReactorHttpHandlerAdapter adapter = new ReactorHttpHandlerAdapter(handler);
HttpServer httpServer = HttpServer.create("localhost", Integer.valueOf("9006"));
return httpServer.newHandler(adapter).block();
}
示例8: nettyContext
import org.springframework.http.server.reactive.ReactorHttpHandlerAdapter; //导入依赖的package包/类
@Bean
public NettyContext nettyContext(ApplicationContext context) {
HttpHandler handler = DispatcherHandler.toHttpHandler(context);
ReactorHttpHandlerAdapter adapter = new ReactorHttpHandlerAdapter(handler);
HttpServer httpServer = HttpServer.create("localhost", Integer.valueOf("8909"));
return httpServer.newHandler(adapter).block();
}
示例9: nettyContext
import org.springframework.http.server.reactive.ReactorHttpHandlerAdapter; //导入依赖的package包/类
@Bean
public NettyContext nettyContext(ApplicationContext context) {
HttpHandler handler = DispatcherHandler.toHttpHandler(context);
ReactorHttpHandlerAdapter adapter = new ReactorHttpHandlerAdapter(handler);
HttpServer httpServer = HttpServer.create("localhost", Integer.valueOf("8125"));
return httpServer.newHandler(adapter).block();
}
示例10: nettyContext
import org.springframework.http.server.reactive.ReactorHttpHandlerAdapter; //导入依赖的package包/类
@Bean
public NettyContext nettyContext(ApplicationContext context) {
HttpHandler handler = DispatcherHandler.toHttpHandler(context);
ReactorHttpHandlerAdapter adapter = new ReactorHttpHandlerAdapter(handler);
HttpServer httpServer = HttpServer.create("localhost", Integer.valueOf("9008"));
return httpServer.newHandler(adapter).block();
}
示例11: reactorServer
import org.springframework.http.server.reactive.ReactorHttpHandlerAdapter; //导入依赖的package包/类
@Bean
public HttpServer reactorServer(){
HttpHandler handler = DispatcherHandler.toHttpHandler(context);
ReactorHttpHandlerAdapter adapter = new ReactorHttpHandlerAdapter(handler);
HttpServer httpServer = HttpServer.create(port);
httpServer.newHandler(adapter).block();
return httpServer;
}
示例12: reactorServer
import org.springframework.http.server.reactive.ReactorHttpHandlerAdapter; //导入依赖的package包/类
@Bean
public HttpServer reactorServer(){
HttpHandler handler = routingHandler();
//HttpHandler handler = dispatcherHandler(context);
ReactorHttpHandlerAdapter adapter = new ReactorHttpHandlerAdapter(handler);
HttpServer httpServer = HttpServer.create(port);
httpServer.newHandler(adapter).block();
return httpServer;
}
示例13: startServer
import org.springframework.http.server.reactive.ReactorHttpHandlerAdapter; //导入依赖的package包/类
@Before
public void startServer(){
if(!isServerStarted) {
AnnotationConfigApplicationContext ac = new AnnotationConfigApplicationContext();
ac.register(TestingConfiguration.class);
ac.refresh();
ReactorHttpHandlerAdapter adapter = new ReactorHttpHandlerAdapter(WebHttpHandlerBuilder.webHandler(new DispatcherHandler(ac)).build());
HttpServer httpServer = HttpServer.create(PORT);
httpServer.newHandler(adapter).block();
isServerStarted = true;
}
}
示例14: nettyContext
import org.springframework.http.server.reactive.ReactorHttpHandlerAdapter; //导入依赖的package包/类
@Profile("default")
@Bean
public NettyContext nettyContext(ApplicationContext context) {
HttpHandler handler = WebHttpHandlerBuilder.applicationContext(context).build();
ReactorHttpHandlerAdapter adapter = new ReactorHttpHandlerAdapter(handler);
HttpServer httpServer = HttpServer.create("localhost", this.port);
return httpServer.newHandler(adapter).block();
}