tomcat的初始化nio模型是一个Accept,2个Poller。详见NioEndpoint.startInternal();
private int pollerThreadCount = Math.min(2,Runtime.getRuntime().availableProcessors());
protected int acceptorThreadCount = 1;
Accept负责处理连接,serverSock为阻塞模式serverSock.configureBlocking(true);,客户端socket为非阻塞模式socket.configureBlocking(false);。并把socket包装NioChannel,NioChannel使用栈机制SynchronizedStack,重复利用对象。NioChannel通过getPoller0().register(channel);方法注册给poller.SynchronizedQueue事件队列,队列会在poller线程中一直查看是否有事件,有事件注册到selector。
Poller负责处理读写selector.selectedKeys().iterator()事件。获取到事件给processKey(sk, attachment);方法,交给线程池处理。