实例介绍
【实例截图】
【核心代码】
.
├── apache-activemq-5.17.0
│ ├── LICENSE
│ ├── NOTICE
│ ├── README.txt
│ ├── activemq-all-5.17.0.jar
│ ├── bin
│ │ ├── activemq
│ │ ├── activemq-diag
│ │ ├── activemq.jar
│ │ ├── env
│ │ ├── linux-x86-32
│ │ │ ├── activemq
│ │ │ ├── libwrapper.so
│ │ │ ├── wrapper
│ │ │ └── wrapper.conf
│ │ ├── linux-x86-64
│ │ │ ├── activemq
│ │ │ ├── libwrapper.so
│ │ │ ├── wrapper
│ │ │ └── wrapper.conf
│ │ ├── macosx
│ │ │ ├── activemq
│ │ │ ├── libwrapper.jnilib
│ │ │ ├── wrapper
│ │ │ └── wrapper.conf
│ │ └── wrapper.jar
│ ├── conf
│ │ ├── activemq.xml
│ │ ├── broker.ks
│ │ ├── broker.ts
│ │ ├── credentials-enc.properties
│ │ ├── credentials.properties
│ │ ├── groups.properties
│ │ ├── java.security
│ │ ├── jetty-realm.properties
│ │ ├── jetty.xml
│ │ ├── jmx.access
│ │ ├── jmx.password
│ │ ├── log4j2.properties
│ │ ├── logging.properties
│ │ ├── login.config
│ │ └── users.properties
│ ├── data
│ │ └── activemq.log
│ ├── docs
│ │ ├── WebConsole-README.txt
│ │ ├── index.html
│ │ └── user-guide.html
│ ├── examples
│ │ ├── amqp
│ │ │ ├── java
│ │ │ │ ├── pom.xml
│ │ │ │ ├── readme.md
│ │ │ │ └── src
│ │ │ │ └── main
│ │ │ │ └── java
│ │ │ │ └── example
│ │ │ │ ├── Listener.java
│ │ │ │ └── Publisher.java
│ │ │ └── python
│ │ │ ├── address.py
│ │ │ ├── content.py
│ │ │ ├── readme.md
│ │ │ ├── receiver.py
│ │ │ └── sender.py
│ │ ├── conf
│ │ │ ├── activemq-demo.xml
│ │ │ ├── activemq-dynamic-network-broker1.xml
│ │ │ ├── activemq-dynamic-network-broker2.xml
│ │ │ ├── activemq-jdbc-performance.xml
│ │ │ ├── activemq-jdbc.xml
│ │ │ ├── activemq-mqtt.xml
│ │ │ ├── activemq-scalability.xml
│ │ │ ├── activemq-security.xml
│ │ │ ├── activemq-specjms.xml
│ │ │ ├── activemq-static-network-broker1.xml
│ │ │ ├── activemq-static-network-broker2.xml
│ │ │ ├── activemq-stomp.xml
│ │ │ ├── activemq-throughput.xml
│ │ │ ├── activemq.xml
│ │ │ ├── camel.xml
│ │ │ ├── jetty-demo.xml
│ │ │ ├── log4j2.properties
│ │ │ ├── resin-web.xml
│ │ │ └── web.xml
│ │ ├── mqtt
│ │ │ ├── java
│ │ │ │ ├── pom.xml
│ │ │ │ ├── readme.md
│ │ │ │ └── src
│ │ │ │ └── main
│ │ │ │ └── java
│ │ │ │ └── example
│ │ │ │ ├── Listener.java
│ │ │ │ └── Publisher.java
│ │ │ └── websocket
│ │ │ ├── css
│ │ │ │ ├── bootstrap.min.css
│ │ │ │ └── bootstrap.min.responsive.css
│ │ │ ├── img
│ │ │ │ ├── glyphicons-halflings-white.png
│ │ │ │ └── glyphicons-halflings.png
│ │ │ ├── index.html
│ │ │ ├── js
│ │ │ │ ├── jquery-3.4.1.min.js
│ │ │ │ └── mqttws31.js
│ │ │ └── readme.md
│ │ ├── openwire
│ │ │ ├── advanced-scenarios
│ │ │ │ ├── jms-example-composite-destinations
│ │ │ │ │ ├── pom.xml
│ │ │ │ │ ├── readme.md
│ │ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── java
│ │ │ │ │ └── example
│ │ │ │ │ └── composite
│ │ │ │ │ └── dest
│ │ │ │ │ ├── Consumer.java
│ │ │ │ │ └── Producer.java
│ │ │ │ ├── jms-example-durable-sub
│ │ │ │ │ ├── pom.xml
│ │ │ │ │ ├── readme.md
│ │ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── java
│ │ │ │ │ └── example
│ │ │ │ │ └── topic
│ │ │ │ │ └── durable
│ │ │ │ │ ├── Publisher.java
│ │ │ │ │ └── Subscriber.java
│ │ │ │ ├── jms-example-exclusive-consumer
│ │ │ │ │ ├── pom.xml
│ │ │ │ │ ├── readme.md
│ │ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── java
│ │ │ │ │ └── example
│ │ │ │ │ └── queue
│ │ │ │ │ └── exclusive
│ │ │ │ │ ├── Consumer.java
│ │ │ │ │ └── Producer.java
│ │ │ │ ├── jms-example-message-browser
│ │ │ │ │ ├── pom.xml
│ │ │ │ │ ├── readme.md
│ │ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── java
│ │ │ │ │ └── example
│ │ │ │ │ └── browser
│ │ │ │ │ ├── Browser.java
│ │ │ │ │ └── Producer.java
│ │ │ │ ├── jms-example-queue
│ │ │ │ │ ├── pom.xml
│ │ │ │ │ ├── readme.md
│ │ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ ├── java
│ │ │ │ │ │ └── example
│ │ │ │ │ │ └── queue
│ │ │ │ │ │ ├── Consumer.java
│ │ │ │ │ │ └── Producer.java
│ │ │ │ │ └── resources
│ │ │ │ │ └── log4j2.properties
│ │ │ │ ├── jms-example-queue-selector
│ │ │ │ │ ├── pom.xml
│ │ │ │ │ ├── readme.md
│ │ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── java
│ │ │ │ │ └── example
│ │ │ │ │ └── queue
│ │ │ │ │ └── selector
│ │ │ │ │ ├── Consumer.java
│ │ │ │ │ └── Producer.java
│ │ │ │ ├── jms-example-temp-destinations
│ │ │ │ │ ├── pom.xml
│ │ │ │ │ ├── readme.md
│ │ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── java
│ │ │ │ │ └── example
│ │ │ │ │ └── tempdest
│ │ │ │ │ ├── Consumer.java
│ │ │ │ │ └── ProducerRequestReply.java
│ │ │ │ ├── jms-example-topic
│ │ │ │ │ ├── pom.xml
│ │ │ │ │ ├── readme.md
│ │ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ ├── java
│ │ │ │ │ │ └── example
│ │ │ │ │ │ └── topic
│ │ │ │ │ │ ├── Publisher.java
│ │ │ │ │ │ └── Subscriber.java
│ │ │ │ │ └── resources
│ │ │ │ │ └── log4j2.properties
│ │ │ │ ├── jms-example-transaction
│ │ │ │ │ ├── pom.xml
│ │ │ │ │ ├── readme.md
│ │ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── java
│ │ │ │ │ └── example
│ │ │ │ │ └── transaction
│ │ │ │ │ └── Client.java
│ │ │ │ ├── jms-example-wildcard-consumer
│ │ │ │ │ ├── pom.xml
│ │ │ │ │ ├── readme.md
│ │ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── java
│ │ │ │ │ └── example
│ │ │ │ │ └── wildcard
│ │ │ │ │ └── Client.java
│ │ │ │ ├── pom.xml
│ │ │ │ └── readme.md
│ │ │ ├── cpp
│ │ │ │ ├── Listener.cpp
│ │ │ │ ├── Publisher.cpp
│ │ │ │ └── readme.md
│ │ │ ├── csharp
│ │ │ │ ├── ActiveMQExamples
│ │ │ │ │ ├── ActiveMQExamples.sln
│ │ │ │ │ ├── ActiveMQExamples.userprefs
│ │ │ │ │ ├── Listener
│ │ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ │ ├── Listener.cs
│ │ │ │ │ │ ├── Listener.csproj
│ │ │ │ │ │ └── NMSTracer.cs
│ │ │ │ │ └── Publisher
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── NMSTracer.cs
│ │ │ │ │ ├── Publisher.cs
│ │ │ │ │ └── Publisher.csproj
│ │ │ │ └── readme.md
│ │ │ └── java
│ │ │ ├── pom.xml
│ │ │ ├── readme.md
│ │ │ └── src
│ │ │ └── main
│ │ │ └── java
│ │ │ └── example
│ │ │ ├── Listener.java
│ │ │ └── Publisher.java
│ │ └── stomp
│ │ ├── cpp
│ │ │ ├── Listener.cpp
│ │ │ ├── Publisher.cpp
│ │ │ └── readme.md
│ │ ├── csharp
│ │ │ ├── ActiveMQExamples
│ │ │ │ ├── ActiveMQExamples.sln
│ │ │ │ ├── ActiveMQExamples.userprefs
│ │ │ │ ├── Listener
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Listener.cs
│ │ │ │ │ ├── Listener.csproj
│ │ │ │ │ └── NMSTracer.cs
│ │ │ │ └── Publisher
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── NMSTracer.cs
│ │ │ │ ├── Publisher.cs
│ │ │ │ └── Publisher.csproj
│ │ │ └── readme.md
│ │ ├── java
│ │ │ ├── pom.xml
│ │ │ ├── readme.md
│ │ │ └── src
│ │ │ └── main
│ │ │ └── java
│ │ │ └── example
│ │ │ ├── Listener.java
│ │ │ └── Publisher.java
│ │ ├── perl
│ │ │ ├── listener
│ │ │ ├── publisher
│ │ │ └── readme.md
│ │ ├── php
│ │ │ ├── listener.php
│ │ │ ├── publisher.php
│ │ │ └── readme.md
│ │ ├── python
│ │ │ ├── readme.md
│ │ │ ├── stompest
│ │ │ │ ├── async
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── listener.py
│ │ │ │ │ └── publisher.py
│ │ │ │ ├── readme.md
│ │ │ │ └── sync
│ │ │ │ ├── __init__.py
│ │ │ │ ├── listener.py
│ │ │ │ └── publisher.py
│ │ │ └── stomppy
│ │ │ ├── listener.py
│ │ │ ├── publisher.py
│ │ │ └── readme.md
│ │ ├── ruby
│ │ │ ├── catstomp.rb
│ │ │ ├── listener.rb
│ │ │ ├── publisher.rb
│ │ │ ├── readme.md
│ │ │ └── stompcat.rb
│ │ └── websocket
│ │ ├── css
│ │ │ ├── bootstrap.min.css
│ │ │ └── bootstrap.min.responsive.css
│ │ ├── img
│ │ │ ├── glyphicons-halflings-white.png
│ │ │ └── glyphicons-halflings.png
│ │ ├── index.html
│ │ ├── js
│ │ │ ├── jquery-3.4.1.min.js
│ │ │ └── stomp.js
│ │ └── readme.md
│ ├── lib
│ │ ├── activemq-broker-5.17.0.jar
│ │ ├── activemq-client-5.17.0.jar
│ │ ├── activemq-console-5.17.0.jar
│ │ ├── activemq-jaas-5.17.0.jar
│ │ ├── activemq-kahadb-store-5.17.0.jar
│ │ ├── activemq-openwire-legacy-5.17.0.jar
│ │ ├── activemq-protobuf-1.1.jar
│ │ ├── activemq-rar.txt
│ │ ├── activemq-spring-5.17.0.jar
│ │ ├── activemq-web-5.17.0.jar
│ │ ├── camel
│ │ │ ├── camel-core-2.25.4.jar
│ │ │ ├── camel-jms-2.25.4.jar
│ │ │ └── camel-spring-2.25.4.jar
│ │ ├── extra
│ │ │ └── mqtt-client-1.16.jar
│ │ ├── geronimo-j2ee-management_1.1_spec-1.0.1.jar
│ │ ├── geronimo-jms_1.1_spec-1.1.1.jar
│ │ ├── geronimo-jta_1.1_spec-1.1.1.jar
│ │ ├── hawtbuf-1.11.jar
│ │ ├── istack-commons-runtime-3.0.11.jar
│ │ ├── jackson-annotations-2.13.1.jar
│ │ ├── jackson-core-2.13.1.jar
│ │ ├── jackson-databind-2.13.1.jar
│ │ ├── javax.activation-api-1.2.0.jar
│ │ ├── jaxb-api-2.2.11.jar
│ │ ├── jaxb-core-2.2.11.jar
│ │ ├── jaxb-runtime-2.2.11.jar
│ │ ├── jcl-over-slf4j-1.7.36.jar
│ │ ├── optional
│ │ │ ├── activeio-core-3.1.4.jar
│ │ │ ├── activemq-amqp-5.17.0.jar
│ │ │ ├── activemq-http-5.17.0.jar
│ │ │ ├── activemq-jdbc-store-5.17.0.jar
│ │ │ ├── activemq-jms-pool-5.17.0.jar
│ │ │ ├── activemq-log4j-appender-5.17.0.jar
│ │ │ ├── activemq-mqtt-5.17.0.jar
│ │ │ ├── activemq-partition-5.17.0.jar
│ │ │ ├── activemq-pool-5.17.0.jar
│ │ │ ├── activemq-runtime-config-5.17.0.jar
│ │ │ ├── activemq-shiro-5.17.0.jar
│ │ │ ├── activemq-stomp-5.17.0.jar
│ │ │ ├── commons-beanutils-1.9.4.jar
│ │ │ ├── commons-codec-1.11.jar
│ │ │ ├── commons-collections-3.2.2.jar
│ │ │ ├── commons-dbcp2-2.9.0.jar
│ │ │ ├── commons-io-2.11.0.jar
│ │ │ ├── commons-lang3-3.12.0.jar
│ │ │ ├── commons-pool2-2.11.1.jar
│ │ │ ├── geronimo-j2ee-connector_1.5_spec-2.0.0.jar
│ │ │ ├── httpclient-4.5.13.jar
│ │ │ ├── httpcore-4.4.15.jar
│ │ │ ├── jasypt-1.9.3.jar
│ │ │ ├── jasypt-spring4-1.9.3.jar
│ │ │ ├── jaxb2-basics-runtime-0.12.0.jar
│ │ │ ├── jettison-1.4.1.jar
│ │ │ ├── jmdns-3.4.1.jar
│ │ │ ├── log4j-api-2.17.1.jar
│ │ │ ├── log4j-core-2.17.1.jar
│ │ │ ├── log4j-slf4j-impl-2.17.1.jar
│ │ │ ├── org.apache.servicemix.bundles.josql-1.5_5.jar
│ │ │ ├── proton-j-0.33.8.jar
│ │ │ ├── shiro-core-1.8.0.jar
│ │ │ ├── shiro-spring-1.8.0.jar
│ │ │ ├── spring-aop-5.3.16.jar
│ │ │ ├── spring-beans-5.3.16.jar
│ │ │ ├── spring-context-5.3.16.jar
│ │ │ ├── spring-core-5.3.16.jar
│ │ │ ├── spring-expression-5.3.16.jar
│ │ │ ├── spring-jms-5.3.16.jar
│ │ │ ├── spring-oxm-5.3.16.jar
│ │ │ ├── spring-tx-5.3.16.jar
│ │ │ ├── velocity-engine-core-2.3.jar
│ │ │ ├── xbean-spring-4.20.jar
│ │ │ ├── xpp3-1.1.4c.jar
│ │ │ └── xstream-1.4.19.jar
│ │ ├── slf4j-api-1.7.36.jar
│ │ └── web
│ │ ├── apache-el-8.5.70.jar
│ │ ├── apache-jsp-8.5.70.jar
│ │ ├── apache-jsp-9.4.45.v20220203.jar
│ │ ├── apache-jstl-9.4.45.v20220203.jar
│ │ ├── asm-9.2.jar
│ │ ├── ecj-3.17.0.jar
│ │ ├── geronimo-annotation_1.3_spec-1.0.jar
│ │ ├── javax.security.auth.message-1.0.0.v201108011116.jar
│ │ ├── jdom2-2.0.6.1.jar
│ │ ├── jetty-annotations-9.4.45.v20220203.jar
│ │ ├── jetty-http-9.4.45.v20220203.jar
│ │ ├── jetty-io-9.4.45.v20220203.jar
│ │ ├── jetty-plus-9.4.45.v20220203.jar
│ │ ├── jetty-rewrite-9.4.45.v20220203.jar
│ │ ├── jetty-security-9.4.45.v20220203.jar
│ │ ├── jetty-server-9.4.45.v20220203.jar
│ │ ├── jetty-servlet-9.4.45.v20220203.jar
│ │ ├── jetty-util-9.4.45.v20220203.jar
│ │ ├── jetty-webapp-9.4.45.v20220203.jar
│ │ ├── jetty-xml-9.4.45.v20220203.jar
│ │ ├── jolokia-core-1.6.2.jar
│ │ ├── json-simple-1.1.1.jar
│ │ ├── rome-1.18.0.jar
│ │ ├── rome-utils-1.18.0.jar
│ │ ├── spring-web-5.3.16.jar
│ │ ├── spring-webmvc-5.3.16.jar
│ │ ├── taglibs-standard-impl-1.2.5.jar
│ │ ├── taglibs-standard-spec-1.2.5.jar
│ │ ├── tomcat-servlet-api-9.0.48.jar
│ │ ├── tomcat-websocket-api-9.0.48.jar
│ │ ├── websocket-api-9.4.45.v20220203.jar
│ │ ├── websocket-common-9.4.45.v20220203.jar
│ │ ├── websocket-server-9.4.45.v20220203.jar
│ │ └── websocket-servlet-9.4.45.v20220203.jar
│ ├── webapps
│ │ ├── admin
│ │ │ ├── 403.html
│ │ │ ├── 404.html
│ │ │ ├── 500.html
│ │ │ ├── META-INF
│ │ │ │ ├── LICENSE
│ │ │ │ └── NOTICE
│ │ │ ├── WEB-INF
│ │ │ │ ├── classes
│ │ │ │ │ └── org
│ │ │ │ │ └── apache
│ │ │ │ │ └── activemq
│ │ │ │ │ └── web
│ │ │ │ │ ├── WebConsoleStarter$OsgiUtil.class
│ │ │ │ │ ├── WebConsoleStarter.class
│ │ │ │ │ ├── config
│ │ │ │ │ │ └── OsgiConfiguration.class
│ │ │ │ │ ├── controller
│ │ │ │ │ │ ├── CopyMessage.class
│ │ │ │ │ │ ├── CreateDestination.class
│ │ │ │ │ │ ├── CreateSubscriber.class
│ │ │ │ │ │ ├── DeleteDestination.class
│ │ │ │ │ │ ├── DeleteJob.class
│ │ │ │ │ │ ├── DeleteMessage.class
│ │ │ │ │ │ ├── DeleteSubscriber.class
│ │ │ │ │ │ ├── MoveMessage.class
│ │ │ │ │ │ ├── PauseDestination.class
│ │ │ │ │ │ ├── PurgeDestination.class
│ │ │ │ │ │ ├── ResumeDestination.class
│ │ │ │ │ │ ├── RetryMessage.class
│ │ │ │ │ │ └── SendMessage.class
│ │ │ │ │ ├── filter
│ │ │ │ │ │ ├── ApplicationContextFilter$1.class
│ │ │ │ │ │ ├── ApplicationContextFilter$2.class
│ │ │ │ │ │ └── ApplicationContextFilter.class
│ │ │ │ │ └── handler
│ │ │ │ │ └── BindingBeanNameUrlHandlerMapping.class
│ │ │ │ ├── dispatcher-servlet.xml
│ │ │ │ ├── jspf
│ │ │ │ │ └── headertags.jspf
│ │ │ │ ├── tags
│ │ │ │ │ ├── form
│ │ │ │ │ │ ├── checkbox.tag
│ │ │ │ │ │ ├── escape.tag
│ │ │ │ │ │ ├── forEachMapEntry.tag
│ │ │ │ │ │ ├── option.tag
│ │ │ │ │ │ ├── short.tag
│ │ │ │ │ │ ├── text.tag
│ │ │ │ │ │ ├── tooltip.tag
│ │ │ │ │ │ └── uri.tag
│ │ │ │ │ └── jms
│ │ │ │ │ ├── forEachConnection.tag
│ │ │ │ │ ├── forEachMessage.tag
│ │ │ │ │ ├── formatTimestamp.tag
│ │ │ │ │ └── persistent.tag
│ │ │ │ ├── web.xml
│ │ │ │ ├── webconsole-default.xml
│ │ │ │ ├── webconsole-embedded.xml
│ │ │ │ ├── webconsole-invm.xml
│ │ │ │ ├── webconsole-jndi.xml
│ │ │ │ ├── webconsole-osgi.xml
│ │ │ │ ├── webconsole-properties.xml
│ │ │ │ └── webconsole-query.xml
│ │ │ ├── browse.jsp
│ │ │ ├── connection.jsp
│ │ │ ├── connections.jsp
│ │ │ ├── decorators
│ │ │ │ ├── footer.jsp
│ │ │ │ ├── head.jsp
│ │ │ │ └── header.jsp
│ │ │ ├── graph.jsp
│ │ │ ├── images
│ │ │ │ ├── activemq-logo.png
│ │ │ │ ├── asf-logo.png
│ │ │ │ ├── big-bullet.png
│ │ │ │ ├── black-footer-bottom.png
│ │ │ │ ├── black-footer-left.png
│ │ │ │ ├── black-footer-right.png
│ │ │ │ ├── bottom-red-bar.png
│ │ │ │ ├── checker-bg.png
│ │ │ │ ├── content-left.png
│ │ │ │ ├── content-right.png
│ │ │ │ ├── feed_atom.png
│ │ │ │ ├── feed_rss.png
│ │ │ │ ├── left-box-bottom.png
│ │ │ │ ├── left-box-right.png
│ │ │ │ ├── left-box-top.png
│ │ │ │ ├── oval-arrow.png
│ │ │ │ ├── right-box-bottom.png
│ │ │ │ ├── right-box-left.png
│ │ │ │ ├── right-box-top.png
│ │ │ │ ├── small-bullet-gray.png
│ │ │ │ ├── small-bullet-red.png
│ │ │ │ ├── spacer.gif
│ │ │ │ ├── top-red-bar.png
│ │ │ │ ├── white-header-left.png
│ │ │ │ ├── white-header-right.png
│ │ │ │ └── white-header-top.png
│ │ │ ├── index.jsp
│ │ │ ├── js
│ │ │ │ ├── common.js
│ │ │ │ ├── css.js
│ │ │ │ ├── mochi
│ │ │ │ │ ├── MochiKit.js
│ │ │ │ │ └── __package__.js
│ │ │ │ ├── plotkit
│ │ │ │ │ ├── Base.js
│ │ │ │ │ ├── Canvas.js
│ │ │ │ │ ├── Layout.js
│ │ │ │ │ ├── SVG.js
│ │ │ │ │ ├── SweetCanvas.js
│ │ │ │ │ ├── SweetSVG.js
│ │ │ │ │ ├── dummy.svg
│ │ │ │ │ └── iecanvas.htc
│ │ │ │ ├── prettify.js
│ │ │ │ └── standardista-table-sorting.js
│ │ │ ├── login.html
│ │ │ ├── logout.jsp
│ │ │ ├── message.jsp
│ │ │ ├── network.jsp
│ │ │ ├── queueConsumers.jsp
│ │ │ ├── queueGraph.jsp
│ │ │ ├── queueProducers.jsp
│ │ │ ├── queues.jsp
│ │ │ ├── scheduled.jsp
│ │ │ ├── send.jsp
│ │ │ ├── slave.jsp
│ │ │ ├── styles
│ │ │ │ ├── prettify.css
│ │ │ │ ├── site.css
│ │ │ │ ├── sorttable.css
│ │ │ │ └── type-settings.css
│ │ │ ├── subscribers.jsp
│ │ │ ├── test
│ │ │ │ ├── dummy.jsp
│ │ │ │ ├── index.jsp
│ │ │ │ └── systemProperties.jsp
│ │ │ ├── topicProducers.jsp
│ │ │ ├── topicSubscribers.jsp
│ │ │ ├── topics.jsp
│ │ │ └── xml
│ │ │ ├── queues.jsp
│ │ │ ├── subscribers.jsp
│ │ │ └── topics.jsp
│ │ ├── api
│ │ │ └── WEB-INF
│ │ │ ├── classes
│ │ │ │ └── jolokia-access.xml
│ │ │ └── web.xml
│ │ ├── favicon.ico
│ │ ├── images
│ │ │ ├── activemq-logo.png
│ │ │ ├── asf-logo.png
│ │ │ ├── big-bullet.png
│ │ │ ├── black-footer-bottom.png
│ │ │ ├── black-footer-left.png
│ │ │ ├── black-footer-right.png
│ │ │ ├── bottom-red-bar.png
│ │ │ ├── checker-bg.png
│ │ │ ├── content-left.png
│ │ │ ├── content-right.png
│ │ │ ├── feed_atom.png
│ │ │ ├── feed_rss.png
│ │ │ ├── left-box-bottom.png
│ │ │ ├── left-box-right.png
│ │ │ ├── left-box-top.png
│ │ │ ├── oval-arrow.png
│ │ │ ├── right-box-bottom.png
│ │ │ ├── right-box-left.png
│ │ │ ├── right-box-top.png
│ │ │ ├── small-bullet-gray.png
│ │ │ ├── small-bullet-red.png
│ │ │ ├── spacer.gif
│ │ │ ├── top-red-bar.png
│ │ │ ├── white-header-left.png
│ │ │ ├── white-header-right.png
│ │ │ └── white-header-top.png
│ │ ├── index.html
│ │ └── styles
│ │ ├── prettify.css
│ │ ├── site.css
│ │ ├── sorttable.css
│ │ └── type-settings.css
│ └── webapps-demo
│ └── demo
│ ├── META-INF
│ │ ├── LICENSE
│ │ └── NOTICE
│ ├── WEB-INF
│ │ └── web.xml
│ ├── chat.css
│ ├── chat.html
│ ├── images
│ │ ├── activemq-logo.png
│ │ ├── asf-logo.png
│ │ ├── big-bullet.png
│ │ ├── black-footer-bottom.png
│ │ ├── black-footer-left.png
│ │ ├── black-footer-right.png
│ │ ├── bottom-red-bar.png
│ │ ├── checker-bg.png
│ │ ├── content-left.png
│ │ ├── content-right.png
│ │ ├── feed_atom.png
│ │ ├── feed_rss.png
│ │ ├── left-box-bottom.png
│ │ ├── left-box-right.png
│ │ ├── left-box-top.png
│ │ ├── oval-arrow.png
│ │ ├── right-box-bottom.png
│ │ ├── right-box-left.png
│ │ ├── right-box-top.png
│ │ ├── small-bullet-gray.png
│ │ ├── small-bullet-red.png
│ │ ├── spacer.gif
│ │ ├── top-red-bar.png
│ │ ├── white-header-left.png
│ │ ├── white-header-right.png
│ │ └── white-header-top.png
│ ├── index.html
│ ├── js
│ │ ├── amq.js
│ │ ├── amq_dojo_adapter.js
│ │ ├── amq_jquery_adapter.js
│ │ ├── amq_prototype_adapter.js
│ │ ├── chat.js
│ │ ├── common.js
│ │ ├── css.js
│ │ ├── dojo.js
│ │ ├── jquery-1.4.2.min.js
│ │ ├── mochi
│ │ │ ├── MochiKit.js
│ │ │ └── __package__.js
│ │ ├── plotkit
│ │ │ ├── Base.js
│ │ │ ├── Canvas.js
│ │ │ ├── Layout.js
│ │ │ ├── SVG.js
│ │ │ ├── SweetCanvas.js
│ │ │ ├── SweetSVG.js
│ │ │ ├── dummy.svg
│ │ │ └── iecanvas.htc
│ │ ├── prettify.js
│ │ ├── prototype.js
│ │ └── standardista-table-sorting.js
│ ├── mqtt
│ │ ├── chat.css
│ │ ├── chat.js
│ │ ├── index.html
│ │ └── mqttws31.js
│ ├── portfolio
│ │ ├── portfolio.html
│ │ └── portfolio.js
│ ├── send.html
│ ├── style.css
│ ├── styles
│ │ ├── prettify.css
│ │ ├── site.css
│ │ ├── sorttable.css
│ │ └── type-settings.css
│ ├── test
│ │ ├── amq_test.html
│ │ └── assets
│ │ ├── README
│ │ ├── jsunittest.js
│ │ └── unittest.css
│ └── websocket
│ ├── chat.css
│ ├── chat.js
│ ├── index.html
│ └── stomp.js
└── 好例子网_apache-activemq-5.17.0-bin.tar.gz
177 directories, 525 files
标签: wu
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论