activemq备忘

ActiveMQ队列消息积压问题调研 http://blog.51cto.com/winters1224/2049432
ActiveMQ的插件开发介绍 https://blog.csdn.net/zhaozheng7758/article/details/6306194
activemq的插件编写 https://blog.csdn.net/u013485533/article/details/50111843
开发ActiveMQ的插件BrokerPlugin http://simon-fish.iteye.com/blog/1772433

activemq jvm 参数 https://blog.csdn.net/freewebsys/article/details/42261617

activemq.bat ACTIVEMQ_OPTS
if "%ACTIVEMQ_OPTS%" == "" set ACTIVEMQ_OPTS=-Xms1G -Xmx1G -Djava.util.logging.config.file=logging.properties -Djava.security.auth.login.config="%ACTIVEMQ_CONF%login.config" -Dcsp.sentinel.dashboard.server=localhost:8080 -Dproject.name=ActiveMQ

activeMq Windows环境部署及实例开发 https://blog.csdn.net/u014330351/article/details/64158602
Java消息队列--ActiveMq 初体验 https://www.cnblogs.com/jaycekon/p/6225058.html

ActiveMQ 到底是推还是拉? https://www.cnblogs.com/allenwas3/p/8574470.html
activemq接收消息pull与push模式 https://blog.csdn.net/yaoqinggg/article/details/79683351

ActiveMQ内存设置和流控 https://blog.csdn.net/kimmking/article/details/9670653 

MQ产品比较-ActiveMQ-RocketMQ https://www.cnblogs.com/Sonet-life/p/6957822.html

/WEB-INF/tags/form/forEachMapEntry.tag https://www.cnblogs.com/sxdcgaq8080/p/7921449.html

---------------------------------------------------------------------------------------------------------------------------------------------------------------------

<broker xmlns="http://activemq.apache.org/schema/core" brokerName="localhost" dataDirectory="${activemq.base}/data" plugins="#simpleBrokerPlugin">

<bean id="simpleBrokerPlugin" class="com.cdfive.sentinel.learn.activemq.SimpleBrokerPlugin"></bean>

jar cvf simplePlugin.jar com/cdfive/sentinel/learn/activemq/SimpleBrokerFilter.class com/cdfive/sentinel/learn/activemq/SimpleBrokerPlugin.class

jar cvf sentinelBrokerPlugin.jar com/cdfive/sentinel/learn/activemq/plugin/sentinel/SentinelBrokerFilter.class com/cdfive/sentinel/learn/activemq/plugin/sentinel/SentinelBrokerPlugin.class

BlockException

 

java.io.IOException: Wire format negotiation timeout: peer did not send his wire format.

 WARN | Transport Connection to: tcp://127.0.0.1:55731 failed: java.net.SocketException: Software caused connection abort: recv failed

原文地址:https://www.cnblogs.com/cdfive2018/p/9541601.html