1 /***
2 *
3 * Copyright 2004 Protique Ltd
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 **/
18 package org.codehaus.activemq.broker.impl;
19
20 import org.codehaus.activemq.ActiveMQConnection;
21 import org.codehaus.activemq.broker.BrokerConnector;
22 import org.codehaus.activemq.message.DefaultWireFormat;
23
24 import javax.jms.JMSException;
25
26 /***
27 * A simple command line tool which runs a JMS Message Broker on the command line
28 *
29 * @version $Revision: 1.8 $
30 */
31 public class Main {
32
33 /***
34 * run the Message Broker as a standalone application
35 *
36 * @param args
37 */
38 public static void main(String args[]) {
39 try {
40 String url = ActiveMQConnection.DEFAULT_URL;
41 if (args.length > 0) {
42 url = args[0];
43 }
44
45 BrokerContainerImpl container = new BrokerContainerImpl(url);
46 BrokerConnector brokerConnector = new BrokerConnectorImpl(container, url, new DefaultWireFormat());
47 container.start();
48 brokerConnector.start();
49
50
51 Object lock = new Object();
52 synchronized (lock) {
53 lock.wait();
54 }
55 }
56 catch (JMSException e) {
57 System.out.println("Caught: " + e);
58 e.printStackTrace();
59 Exception le = e.getLinkedException();
60 System.out.println("Reason: " + le);
61 if (le != null) {
62 le.printStackTrace();
63 }
64 }
65 catch (Exception e) {
66 System.out.println("Caught: " + e);
67 e.printStackTrace();
68 }
69 }
70 }