我查看了 Netty 文档,并在示例源类中发现了一些评论: org.jboss.netty.example.factorial.FactorialServerHandler ,在这个 src 中,一些评论:
//##in org.jboss.netty.example.factorial.FactorialServerPipelineFactory
......
// and then business logic.
// Please note we create a handler for every new channel
// because it has stateful properties.
pipeline.addLast("handler", new FactorialServerHandler());
但是,我重新检查了其他示例,例如 TelnetServerPipelineFactory,似乎没有什么区别,句柄是由以下人员创建的:
// and then business logic.
pipeline.addLast("handler", new TelnetServerHandler());
所有处理程序都是由带有“新”的管道创建的?Netty 中的所有示例都是有状态的?显然 Echo/Telnet 不需要保持 stateful prop。
在我的旧项目中,我使用 Netty 创建一个 Http Server 作为 RESTful 服务器,我的处理程序代码是:
public class HttpServerPipelineFactory implements ChannelPipelineFactory {
private final HttpServerHandler handler;
public ChannelPipeline getPipeline() throws Exception {
ChannelPipeline pipeline = pipeline();
pipeline.addLast("decoder", new HttpRequestDecoder());
pipeline.addLast("aggregator", new HttpChunkAggregator(1048576));
pipeline.addLast("encoder", new HttpResponseEncoder());
pipeline.addLast("handler", handler); //singleton
return pipeline;
}
}
我的 RESTful 服务器是无状态的(这是一种REST
含义),所以我使用了单例句柄。我是对的吗?