- 浏览: 312116 次
-
最新评论
-
M_drm:
学习了,赞
JDBC 分布式事务 基础知识 JTA基本原理 -
jackyin5918:
...
[转]PowerMock 简介 使用 PowerMock 以及 Mockito 实现单元测试 -
happyle:
同感啊.....
因为眼花而引发的悲剧 -- Spring 整合Shiro框架中注入RolePermissionResolver到AuthorizingRealm -
jackyin5918:
hemingyuan 写道博主,你的压缩文件貌似打不开啊,能不 ...
Spring3 集成 Hibernate4,使用Atomikos3.8实现分布式事务控制 -
hemingyuan:
博主,你的压缩文件貌似打不开啊,能不能上传一个完整的例子,别分 ...
Spring3 集成 Hibernate4,使用Atomikos3.8实现分布式事务控制
文章列表
Linux 下面配置ActiveMQ(以5.8.0版本为例)
1. 安装JDK 假设安装在 /home/username/jdk1.6.0_14
2. 配置 环境变量JAVA_HOME 指向上面的目录
3. 下载 apache-activemq-5.8.0-bin.tar.gz 并上传到/home/username目录
4. 解压上面的文件 tar zxvf apache-activemq-5.8.0-bin.tar.gz
5 解压完成后 生成 apache-activemq-5.8.0 文件夹
6 cd /home/username/apa ...
ActiveMQ 备忘
- 博客分类:
- JMS
1. 双向连接 duplex="true" 10.2
2. 请注意,ActiveMQ代理配置中网络连接器和消息持久化配置的顺序很重要.网络连接,消息持久化和连接器
需要按照下面的顺序配置:
(1) 网络连接 -- 网络连接需要在消息存储之前建立好
(2) ...
配置ActiveMQ 静态集群
- 博客分类:
- JMS
配置 ActiveMQ 静态集群
静态集群是指配置的集群中所有ActiveMQ代理的IP地址实现都是已知的.
(1) 简单配置 目标是将3个运行于不同机器上的ActiveMQ代理互联起来.
3个代理名称 分别为 broker_96, broker_106 和 broker_245,配置文件基于默认的配置文件修改,
分别添加上网络连接器.
在 </destinationPolicy> 元素后面 添加下面的配置(以broker_96代理为例,static协议分别静态连接到另外两台机器上)
<networkConnectors& ...
eclipse中资源文件编辑插件
- 博客分类:
- 工具
安装时,将解压后的plugins文件夹拷贝到 myeclipse安装目录下面(和 eclipse.exe 放到一起)
与原来的 plugins 合并即可.
实测 myeclipse6.5可用
博客已搬家, 更好阅读体验, 猛戳 http://www.jack-yin.com/coding/translation/activemq-in-action/1886.html
14.5 Summary
14.5 小结
After we learned how to configure the broker and write applications using it,
this last chapter showed us how we can administer and monitor ActiveMQ instances
in production. ...
博客已搬家, 更好阅读体验, 猛戳 http://www.jack-yin.com/coding/translation/activemq-in-action/1884.html
14.4 Configuring ActiveMQ logging
14.4 配置ActiveMQ日志
So far we’ve seen how you can monitor ActiveMQ either programmatically or using
tools such as JConsole. But there’s one more way you can peek at th ...
博客已搬家, 更好阅读体验, 猛戳 http://www.jack-yin.com/coding/translation/activemq-in-action/1879.html
14.3 Tools for ActiveMQ administration
14.3 ActiveMQ的管理工具
A wide range of tools exist for monitoring and administering ActiveMQ. Which ones
you’ll be using depends primarily on the environment you’re ...
博客已搬家, 更好阅读体验, 猛戳 http://www.jack-yin.com/coding/translation/activemq-in-action/1873.html
14.2 Monitoring ActiveMQ with advisory messages
14.2 使用advisory监控ActiveMQ
The JMX API is a well-known mechanism often used to manage and monitor a wide
range of Java applications. But since you’re ...
博客已搬家, 更好阅读体验, 猛戳 http://www.jack-yin.com/coding/translation/activemq-in-action/1814.html
14.1 The JMX API and ActiveMQ
14.1 JMX API和ActiveMQ
Nearly every story on management and monitoring in the Java world begins with
Java Management Extensions (JMX). The JMX API allows you to implem ...
博客已搬家, 更好阅读体验, 猛戳 http://www.jack-yin.com/coding/translation/activemq-in-action/1810.html
14 Administering and monitoring ActiveMQ
14 管理和监控ActiveMQ
This chapter covers
本章内容包括
? Understanding JMX and ActiveMQ
? Using advisory message ...
博客已搬家, 更好阅读体验, 猛戳 http://www.jack-yin.com/coding/translation/activemq-in-action/1808.html
13.5 Summary
13.5 小结
In general, message performance can be improved by asking ActiveMQ to do less.
Consider the overhead of persisting messages and the cost of transporting both
messages and c ...
博客已搬家, 更好阅读体验, 猛戳 http://www.jack-yin.com/coding/translation/activemq-in-action/1805.html
13.4 Tuning in action
13.4 性能优化实战
Let’s demonstrate pulling some of these performance-tuning options together with
an example application. We’ll simulate ...
博客已搬家, 更好阅读体验, 猛戳 http://www.jack-yin.com/coding/translation/activemq-in-action/1800.html
13.3 Optimizing message consumers
13.3 优化消息消费者
In order to maximize application performance, you have to look at all the
participants— and a ...