?? ssapserver.java
字號:
package com.eshore.pubservice.ssap;
import com.eshore.pubservice.nio.ServerThread;
import com.eshore.pubservice.ssap.codec.SSAPCodecFactory;
import com.eshore.pubservice.ssap.handler.SSAPHandlerFactory;
/**
* SSAP 服務啟動類.
*
* @author lishuisheng
*
*/
public class SSAPServer {
public static void main(String arg[]){
SSAPCodecFactory codecFactory=new SSAPCodecFactory();
SSAPHandlerFactory handlerFactory=new SSAPHandlerFactory();
ServerThread st=new ServerThread(codecFactory,handlerFactory);
st.setPort(1984);
st.startServer();
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -