|
|
@ -1,9 +1,15 @@ |
|
|
|
/* |
|
|
|
* Beispiel für MOM / AMQP |
|
|
|
* |
|
|
|
* Message Producer, schickt Messages an Queue in ActiveMQ |
|
|
|
* Message Consumer, bezieht Messages von Queue aus ActiveMQ |
|
|
|
* |
|
|
|
* zuvor ActiveMQ starten, Zugriff auf Web-Oberfläche http://localhost:8161/admin Login: admin ;) |
|
|
|
* Bevor diese Klasse gestartet wird, muss zuvor ActiveMQ gestartet werden! |
|
|
|
* - z.B. apache-activemq-5.15.2-bin.zip von http://activemq.apache.org/activemq-5152-release.html herunterladen |
|
|
|
* - entpacken, und im enthaltenen bin Ordner activemq.bat (sofern Windows) starten mit: |
|
|
|
* - activemq start |
|
|
|
* - Zugriff auf Web-Oberfläche von ActiveMQ über http://localhost:8161/admin (user: admin, password: admin ;) ) möglich |
|
|
|
* |
|
|
|
* Das Beispiel ActiveMQHelloWorld funktioniert auch ohne Server. |
|
|
|
* |
|
|
|
* Beispiele, siehe z.B. http://activemq.apache.org/hello-world.html |
|
|
|
* oder http://activemq.apache.org/getting-started.html |
|
|
@ -11,6 +17,8 @@ |
|
|
|
|
|
|
|
package verteiltesysteme.mom; |
|
|
|
|
|
|
|
//Achtung: Damit das Beispiel funktioniert, muss zuvor ActiveMQ installiert und gestartet werden! Siehe auch Kommentar oben! |
|
|
|
|
|
|
|
import java.io.BufferedReader; |
|
|
|
import java.io.InputStreamReader; |
|
|
|
import java.text.DateFormat; |
|
|
|