当前位置: 首页>>代码示例>>Java>>正文


Java ReactorHttpHandlerAdapter类代码示例

本文整理汇总了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;
}
 
开发者ID:saintdan,项目名称:spring-webflux-microservices-boilerplate,代码行数:9,代码来源:HttpServerConfig.java

示例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();
}
 
开发者ID:aliaksei-lithium,项目名称:spring5demo,代码行数:9,代码来源:ReactorApplication.java

示例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();
}
 
开发者ID:PacktPublishing,项目名称:Spring-5.0-Cookbook,代码行数:8,代码来源:HttpServerConfig.java

示例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();
}
 
开发者ID:PacktPublishing,项目名称:Spring-5.0-Cookbook,代码行数:8,代码来源:HttpServerConfig.java

示例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();
}
 
开发者ID:PacktPublishing,项目名称:Spring-5.0-Cookbook,代码行数:8,代码来源:HttpServerConfig.java

示例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();
}
 
开发者ID:PacktPublishing,项目名称:Spring-5.0-Cookbook,代码行数:8,代码来源:HttpServerConfig.java

示例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();
}
 
开发者ID:PacktPublishing,项目名称:Spring-5.0-Cookbook,代码行数:8,代码来源:HttpServerConfig.java

示例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();
}
 
开发者ID:PacktPublishing,项目名称:Spring-5.0-Cookbook,代码行数:8,代码来源:HttpServerConfig.java

示例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();
}
 
开发者ID:PacktPublishing,项目名称:Spring-5.0-Cookbook,代码行数:8,代码来源:HttpServerConfig.java

示例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();
}
 
开发者ID:PacktPublishing,项目名称:Spring-5.0-Cookbook,代码行数:8,代码来源:HttpServerConfig.java

示例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;
}
 
开发者ID:noorulhaq,项目名称:reactive.loanbroker.system,代码行数:9,代码来源:Application.java

示例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;
}
 
开发者ID:noorulhaq,项目名称:reactive.loanbroker.system,代码行数:10,代码来源:Application.java

示例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;
    }
}
 
开发者ID:noorulhaq,项目名称:reactive.loanbroker.system,代码行数:14,代码来源:LoanBrokerTests.java

示例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();
}
 
开发者ID:hantsy,项目名称:spring-reactive-sample,代码行数:9,代码来源:Application.java


注:本文中的org.springframework.http.server.reactive.ReactorHttpHandlerAdapter类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。