|
<console default-domain="Cat" show-cat-domain="true"> <remote-servers>10.1.1.1:8080,10.1.1.2:8080,10.1.1.3:8080</remote-servers> </console> |
remote-servers配置的是CAT集 […more]
服务器端初始化
|
CatServlet.init CatServlet.initComponents DefaultModuleInitializer.execute DefaultModuleInitializer.expandAll CatHomeModule.setup TcpSocketReceiver.init() CatClientModule.execute Cat.setContainer PlexusContainer.lookup(MessageManager.class); MessageManager.initialize TcpSocketSender.initialize PlexusContainer.lookup(MessageProducer.class); MessageProducer.constructor |
接受客户端采集的数据 [cr […more]
如果应用采集的数据比较多,将这些数据都发送给服务器端务必会给服务器端造成很大的压力,这时可以通过采样(也就是将 […more]
cat client的入口点是com.dianping.cat.Cat类,该类是单实例的, private s […more]
权限控制主要应用场景及解决方案, 本文由博主https://www.javacoder.cn/?p=926整理 […more]
在实践中,往往各个角色的权限存在某种包含关系。假设系统中角色划分如下:ROLE_supervisor,ROLE […more]
本文以spring security自带的tutorial-xml demo讲解,本文由博主javacoder […more]
在web.xml中有如下的filter声明 本文由博主javacoder.cn整理,转载请注明出处 [cray […more]
如果kafka的topic中已经累积了很多消息,这时新组的第一个消费者开始消费该topic中的消息,这时消费者 […more]
一、证书产生 #CA产生自己的私钥(存于ca-key文件)和证书(存于ca-cert文件),在当前目录(本文由 […more]