Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [openmq-dev] BDBStore, CoherenceStore, InMemoryStore

Hi all

I have a problem locating some source file(s).
The starting one is: AutoClusterBrokerMapImpl (probably more from the
same package)
It was part of a binary release done by the previous organization as
versions 5.0 and 5.1 (maybe more), but seems the sources were not
distributed for it.

For example:

$ wget https://repo.maven.apache.org/maven2/org/glassfish/mq/mq-distribution/5.1-b09/mq-distribution-5.1-b09.zip
$ unzip -q mq-distribution-5.1-b09.zip
$ jar tf mq/lib/imqbroker.jar | grep AutoClusterBrokerMapImpl
$ jar xf mq/lib/imqbroker.jar | grep AutoClusterBrokerMapImpl
$ javap com/sun/messaging/jmq/jmsserver/persist/coherence/AutoClusterBrokerMapImpl.class
| grep from
Compiled from "AutoClusterBrokerMapImpl.java"
$ rm -rf com/ META-INF/ mq mq-distribution-5.1-b09.zip

$ wget https://repo.maven.apache.org/maven2/org/glassfish/mq/mq-distribution/5.1-b09/mq-distribution-5.1-b09-sources.zip
$ unzip -q mq-distribution-5.1-b09-sources.zip
$ find mq5.1-source/ -type f -name AutoClusterBrokerMapImpl.java
$ find mq5.1-source/ -type d -name coherence
$ rm -rf mq5.1-source/ mq-distribution-5.1-b09-sources.zip

$ git clone --depth=1 https://github.com/javaee/openmq.git --branch=MQ5.1_B09
$ find openmq -type f -name AutoClusterBrokerMapImpl.java
$ find openmq -type d -name coherence
$ rm -rf openmq/

Given that, I will extend the drop of CoherenceStore to include
CoherenceServer as well.

-- 
Piotrek


Back to the top