ActiveMQ: security mechanism, message persistence
1, Security mechanism
1.1. Modify ActiveMQ XML file
Configure the < plugins > tag under the < broker > < / broker > tag.
<beans
xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.spr ...
Added by erth on Sun, 30 Jan 2022 11:25:04 +0200
ActiveMQ-05-ActiveMQ transport protocol, message storage and persistence
01. Transmission protocol of ActiveMQ
Refer to official documents: http://activemq.apache.org/configuring-version-5-transports.html
summary
The client broker (client MQ server) communication protocols supported by ActiveMQ include TCP, NIO, UDP, SSL, Http(s) and VM. The file for configuring the Transport Connector is in conf / ActiveMQ i ...
Added by sharma on Thu, 30 Dec 2021 14:25:11 +0200
ActiveMQ Message Queuing implements Point-to-Point (Queue) and Publish/Subscribe (Topic)
(Message Queue Message Queue) JMS
Preface
JMS, Java Message Service Application Interface, is a Java platform API for Message-Oriented Middleware (MOM), used to send messages between two applications for asynchronous communication JMS is a vendor-independent API for accessing and receiving system messages, similar to JDBC(Java Database Co ...
Added by Bac on Wed, 22 Dec 2021 07:36:45 +0200
ActiveMQ-05 of Message Oriented Middleware
Advanced use
queue browser
You can view messages in the queue without consumption, and there is no subscription function
package com.zjw.activemq.browser;
import java.util.Enumeration;
import javax.jms.Connection;
import javax.jms.ConnectionFactory;
import javax.jms.QueueBrowser;
import javax.jms.Session;
import javax.jms.TextMessage;
impor ...
Added by jay_bo on Wed, 15 Dec 2021 19:00:53 +0200