這篇文章主要介紹“zk中ServerCnxnFactory連接管理工廠的使用方法”,在日常操作中,相信很多人在zk中ServerCnxnFactory連接管理工廠的使用方法問題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”zk中ServerCnxnFactory連接管理工廠的使用方法”的疑惑有所幫助!接下來(lái),請(qǐng)跟著小編一起來(lái)學(xué)習(xí)吧!
在網(wǎng)站制作、成都網(wǎng)站制作過程中,需要針對(duì)客戶的行業(yè)特點(diǎn)、產(chǎn)品特性、目標(biāo)受眾和市場(chǎng)情況進(jìn)行定位分析,以確定網(wǎng)站的風(fēng)格、色彩、版式、交互等方面的設(shè)計(jì)方向。創(chuàng)新互聯(lián)建站還需要根據(jù)客戶的需求進(jìn)行功能模塊的開發(fā)和設(shè)計(jì),包括內(nèi)容管理、前臺(tái)展示、用戶權(quán)限管理、數(shù)據(jù)統(tǒng)計(jì)和安全保護(hù)等功能。
作為ServerCnxn的工廠抽象類
屬性
ZOOKEEPER_SERVER_CNXN_FACTORY | zookeeper.serverCnxnFactory |
secure | 在ServerCnxnFactory中SSL是否啟用 |
sessionMap | session管理配置中信息(sessionId,ServerCnxn) |
zkServer | ZooKeeperServer |
方法 (存在很多抽象方法)
addSession(long sessionId, ServerCnxn cnxn) | 添加session |
removeCnxnFromSessionMap(ServerCnxn cnxn) | 從工廠中移除Cnxn |
closeSession(long sessionId, ServerCnxn.DisconnectReason reason) | 關(guān)閉session |
getLocalPort | |
getConnections | 獲取連接 |
getNumAliveConnections | 獲取存活的連接 |
getZooKeeperServer | 獲取zkServer |
configure | 配置 |
getMaxClientCnxnsPerHost | 單個(gè)端口上最大連接 |
startup | 啟動(dòng)服務(wù) |
createFactory() | |
unregisterConnection(ServerCnxn serverCnxn) | 去注冊(cè)連接 |
registerConnection(ServerCnxn serverCnxn) | 注冊(cè)連接 |
public abstract void startup(ZooKeeperServer zkServer, boolean startServer) throws IOException, InterruptedException; public static ServerCnxnFactory createFactory() throws IOException { //獲取key對(duì)應(yīng)值 String serverCnxnFactoryName = System.getProperty(ZOOKEEPER_SERVER_CNXN_FACTORY); if (serverCnxnFactoryName == null) { //默認(rèn)是NIO serverCnxnFactoryName = NIOServerCnxnFactory.class.getName(); } try { //加載實(shí)例 ServerCnxnFactory serverCnxnFactory = (ServerCnxnFactory) Class.forName(serverCnxnFactoryName) .getDeclaredConstructor() .newInstance(); LOG.info("Using {} as server connection factory", serverCnxnFactoryName); return serverCnxnFactory; } catch (Exception e) { IOException ioe = new IOException("Couldn't instantiate " + serverCnxnFactoryName, e); throw ioe; } }
到此,關(guān)于“zk中ServerCnxnFactory連接管理工廠的使用方法”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)?lái)更多實(shí)用的文章!