书栈网 · BookStack 本次搜索耗时 0.021 秒,为您找到 1473 个相关结果.
  • 6 The HTTP Server

    6 The HTTP Server 6 The HTTP Server Using the CLI If you are creating your project using the Micronaut CLI’s create-app command, the http-server dependency is included by d...
  • 6.26 HTTP/2 Support

    6.26 HTTP/2 Support Configuring the Server for HTTP/2 HTTP/2 Clients 6.26 HTTP/2 Support Since Micronaut 2.x, Micronaut’s Netty-based HTTP server can be configured to support...
  • 6 The HTTP Server

    6 The HTTP Server 6 The HTTP Server Using the CLI If you are creating your project using the Micronaut CLI’s create-app command, the http-server dependency is included by d...
  • 6 The HTTP Server

    6 The HTTP Server 6 The HTTP Server Using the CLI If you are creating your project using the Micronaut CLI’s create-app command, the http-server dependency is included by d...
  • 6.27.1 Configuring Server Thread Pools

    6.27.1 Configuring Server Thread Pools Blocking Operations 6.27.1 Configuring Server Thread Pools The HTTP server is built on Netty which is designed as a non-blocking I/O to...
  • 6.28.1 Configuring Server Thread Pools

    6.28.1 Configuring Server Thread Pools Blocking Operations 6.28.1 Configuring Server Thread Pools The HTTP server is built on Netty which is designed as a non-blocking I/O to...
  • 1.2 Upgrading to Micronaut 2.x

    1.2 Upgrading to Micronaut 2.x New Group IDs Mandatory upgrade for Netty tcnative Other Breaking Changes 1.2 Upgrading to Micronaut 2.x This section covers the steps require...
  • 包含的 Transport

    1426 2018-02-22 《Netty 实战(精髓)》
    包含的 Transport NIO-Nonblocking I/O OIO-Old blocking I/O 同个 JVM 内的本地 Transport 通信 内嵌 Transport 包含的 Transport Netty 自带了一些传输协议的实现,虽然没有支持所有的传输协议,但是其自带的已足够我们来使用。Netty应用程序的传输协议依赖于...
  • 构成部分

    2643 2018-02-22 《Netty 实战(精髓)》
    构成部分 Channel Callback (回调) Future Event 和 Handler 整合 FUTURE, CALLBACK 和 HANDLER SELECTOR, EVENT 和 EVENT LOOP 构成部分 正如我们前面解释的,非阻塞 I/O 不会强迫我们等待操作的完成。在这种能力的基础上,真正的异步 I/O 起到了...
  • 序列化数据

    序列化数据 JDK 序列化 JBoss Marshalling 序列化 ProtoBuf 序列化 序列化数据 JDK 提供了 ObjectOutputStream 和 ObjectInputStream 通过网络将原始数据类型和 POJO 进行序列化和反序列化。API并不复杂,可以应用到任何对象,支持 java.io.Serializable ...