⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 durablesubscriberexample.java

📁 java书 java书 java书 java书 java书 java书
💻 JAVA
字号:
/* * Copyright (c) 2006 Sun Microsystems, Inc.  All rights reserved.  U.S. * Government Rights - Commercial software.  Government users are subject * to the Sun Microsystems, Inc. standard license agreement and * applicable provisions of the FAR and its supplements.  Use is subject * to license terms. * * This distribution may include materials developed by third parties. * Sun, Sun Microsystems, the Sun logo, Java and J2EE are trademarks * or registered trademarks of Sun Microsystems, Inc. in the U.S. and * other countries. * * Copyright (c) 2006 Sun Microsystems, Inc. Tous droits reserves. * * Droits du gouvernement americain, utilisateurs gouvernementaux - logiciel * commercial. Les utilisateurs gouvernementaux sont soumis au contrat de * licence standard de Sun Microsystems, Inc., ainsi qu'aux dispositions * en vigueur de la FAR (Federal Acquisition Regulations) et des * supplements a celles-ci.  Distribue par des licences qui en * restreignent l'utilisation. * * Cette distribution peut comprendre des composants developpes par des * tierces parties. Sun, Sun Microsystems, le logo Sun, Java et J2EE * sont des marques de fabrique ou des marques deposees de Sun * Microsystems, Inc. aux Etats-Unis et dans d'autres pays. */import javax.jms.ConnectionFactory;import javax.jms.Topic;import javax.jms.Connection;import javax.jms.Session;import javax.jms.MessageProducer;import javax.jms.TopicSubscriber;import javax.jms.MessageListener;import javax.jms.Message;import javax.jms.TextMessage;import javax.jms.JMSException;import javax.annotation.Resource;public class DurableSubscriberExample {    static int startindex = 0;    @Resource(mappedName = "jms/ConnectionFactory")    private static ConnectionFactory connectionFactory;    @Resource(mappedName = "jms/DurableConnectionFactory")    private static ConnectionFactory durableConnectionFactory;    @Resource(mappedName = "jms/Topic")    private static Topic topic;    String conFacName1 = "jms/ConnectionFactory";    String conFacName2 = "jms/DurableConnectionFactory";    String topicName = "jms/Topic";    /**     * Instantiates the subscriber and publisher classes.     * Starts the subscriber; the publisher publishes some     *   messages.     * Closes the subscriber; while it is closed, the publisher     *   publishes some more messages.     * Restarts the subscriber and fetches the messages.     * Finally, closes the connections.     */    public void run_program() {        DurableSubscriber durableSubscriber = new DurableSubscriber();        MultiplePublisher multiplePublisher = new MultiplePublisher();        durableSubscriber.startSubscriber();        multiplePublisher.publishMessages();        durableSubscriber.closeSubscriber();        multiplePublisher.publishMessages();        durableSubscriber.startSubscriber();        durableSubscriber.closeSubscriber();        multiplePublisher.finish();        durableSubscriber.finish();    }    /**     * Calls the run_program method.     *     */    public static void main(String[] args) {        DurableSubscriberExample dse = new DurableSubscriberExample();        if (args.length != 0) {            System.out.println("Program takes no arguments.");            System.exit(1);        }        System.out.println(                "Connection factory without client ID is " + dse.conFacName1);        System.out.println(                "Connection factory with client ID is " + dse.conFacName2);        System.out.println("Topic name is " + dse.topicName);        dse.run_program();        System.exit(0);    }    /**     * The DurableSubscriber class contains a constructor, a     * startSubscriber method, a closeSubscriber method, and a     * finish method.     *     * The class fetches messages asynchronously, using a message     * listener, TextListener.     */    public class DurableSubscriber {        Connection connection = null;        Session session = null;        TextListener listener = null;        TopicSubscriber subscriber = null;        /**         * Constructor: Uses the durable connection factory to         * create a connection and session.         */        public DurableSubscriber() {            /*             * Create connection and session.             */            try {                connection = durableConnectionFactory.createConnection();                session = connection.createSession(                            false,                            Session.AUTO_ACKNOWLEDGE);            } catch (Exception e) {                System.err.println("Connection problem: " + e.toString());                if (connection != null) {                    try {                        connection.close();                    } catch (JMSException ee) {                    }                }                System.exit(1);            }        }        /**         * Stops connection, then creates durable subscriber,         * registers message listener (TextListener), and starts         * message delivery; listener displays the messages         * obtained.         */        public void startSubscriber() {            try {                System.out.println("Starting subscriber");                connection.stop();                subscriber = session.createDurableSubscriber(                            topic,                            "MakeItLast");                listener = new TextListener();                subscriber.setMessageListener(listener);                connection.start();            } catch (JMSException e) {                System.err.println(                        "startSubscriber: Exception occurred: " + e.toString());            }        }        /**         * Blocks until publisher issues a control message         * indicating end of publish stream, then closes         * subscriber.         */        public void closeSubscriber() {            try {                listener.monitor.waitTillDone();                System.out.println("Closing subscriber");                subscriber.close();            } catch (JMSException e) {                System.err.println(                        "closeSubscriber: Exception occurred: " + e.toString());            }        }        /**         * Closes the connection.         */        public void finish() {            if (connection != null) {                try {                    System.out.println(                            "Unsubscribing from " + "durable subscription");                    session.unsubscribe("MakeItLast");                    connection.close();                } catch (JMSException e) {                }            }        }        /**         * The TextListener class implements the MessageListener         * interface by defining an onMessage method for the         * DurableSubscriber class.         */        private class TextListener implements MessageListener {            final SampleUtilities.DoneLatch monitor = new SampleUtilities.DoneLatch();            /**             * Casts the message to a TextMessage and displays             * its text. A non-text message is interpreted as the             * end of the message stream, and the message             * listener sets its monitor state to all done             * processing messages.             *             * @param message    the incoming message             */            public void onMessage(Message message) {                if (message instanceof TextMessage) {                    TextMessage msg = (TextMessage) message;                    try {                        System.out.println(                                "SUBSCRIBER: " + "Reading message: "                                + msg.getText());                    } catch (JMSException e) {                        System.err.println(                                "Exception in " + "onMessage(): "                                + e.toString());                    }                } else {                    monitor.allDone();                }            }        }    }    /**     * The MultiplePublisher class publishes several messages to     * a topic. It contains a constructor, a publishMessages     * method, and a finish method.     */    public class MultiplePublisher {        Connection connection = null;        MessageProducer producer = null;        Session session = null;        /**         * Constructor: Uses the regular connection factory and the topic         * to create a connection, session, and publisher.         */        public MultiplePublisher() {            /*             * Create connection, session, and publisher.             */            try {                connection = connectionFactory.createConnection();                session = connection.createSession(                            false,                            Session.AUTO_ACKNOWLEDGE);                producer = session.createProducer(topic);            } catch (Exception e) {                System.err.println("Connection problem: " + e.toString());                if (connection != null) {                    try {                        connection.close();                    } catch (JMSException ee) {                    }                }                System.exit(1);            }        }        /**         * Creates text message.         * Sends some messages, varying text slightly.         * Messages must be persistent.         */        public void publishMessages() {            TextMessage message = null;            int i;            final int NUMMSGS = 3;            final String MSG_TEXT = "Here is a message";            try {                message = session.createTextMessage();                for (i = startindex; i < (startindex + NUMMSGS); i++) {                    message.setText(MSG_TEXT + " " + (i + 1));                    System.out.println(                            "PUBLISHER: Publishing " + "message: "                            + message.getText());                    producer.send(message);                }                /*                 * Send a non-text control message indicating end                 * of messages.                 */                producer.send(session.createMessage());                startindex = i;            } catch (JMSException e) {                System.err.println(                        "publishMessages: Exception occurred: " + e.toString());            }        }        /**         * Closes the connection.         */        public void finish() {            if (connection != null) {                try {                    connection.close();                } catch (JMSException e) {                }            }        }    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -