摘要:
The JMSExceptionJMS defines JMSException as the root class for exceptions thrown by JMS methods. JMSException is a checked exception and catching it p... 阅读全文
摘要:
Although sessions are used to create temporary destinations, this is only for convenience. Their scope is actually the entire connection. Their lifeti... 阅读全文
摘要:
方法一通过 ActiveMQ Web 控制台删除。方法二通过 Java 代码删除。ActiveMQConnection.destroyDestination(ActiveMQDestination destination)方法三通过配置 conf/activemq.xml,当broker 探测到闲置... 阅读全文
摘要:
JMS 事务遵从发送操作与接收操作相互分离的约定。下图显示的是一个事务性发送,其中一组消息要么能够保证全部到达消息服务器,要么连一条消息也不能保证到达消息服务器。从发送者的角度来看,JMS 提供者为这组消息提供了高速缓存,直到执行 commit() 为止。如果发生了故障,或者执行了 rollback... 阅读全文