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

📄 publisherbean.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. */package sb;import java.util.Random;import java.util.logging.Logger;import javax.ejb.SessionContext;import javax.ejb.Stateless;import javax.ejb.Remote;import javax.naming.Context;import javax.naming.InitialContext;import javax.jms.ConnectionFactory;import javax.jms.Connection;import javax.jms.Topic;import javax.jms.Session;import javax.jms.MessageProducer;import javax.jms.TextMessage;import javax.jms.JMSException;import javax.annotation.Resource;import javax.annotation.PostConstruct;import javax.annotation.PreDestroy;/** * Bean class for Publisher enterprise bean. Defines publishNews * business method as well as required methods for a stateless * session bean. */@Stateless@Remote({    PublisherRemote.class})public class PublisherBean implements PublisherRemote {    static final String[] messageTypes = {            "Nation/World", "Metro/Region", "Business", "Sports", "Living/Arts",            "Opinion"        };    static final Logger logger = Logger.getLogger("PublisherBean");    Connection connection = null;    @Resource(mappedName = "jms/ConnectionFactory")    private ConnectionFactory connectionFactory;    @Resource    private SessionContext sc;    @Resource(mappedName = "jms/Topic")    private Topic topic;    public PublisherBean() {    }    /**     * Creates the connection.     */    @PostConstruct    public void makeConnection() {        try {            connection = connectionFactory.createConnection();        } catch (Throwable t) {            // JMSException could be thrown            logger.severe(                    "PublisherBean.makeConnection:" + "Exception: "                    + t.toString());        }    }    /**     * Chooses a message type by using the random number     * generator found in java.util.  Called by publishNews().     *     * @return   the String representing the message type     */    private String chooseType() {        int whichMsg;        Random rgen = new Random();        whichMsg = rgen.nextInt(messageTypes.length);        return messageTypes[whichMsg];    }    /**     * Creates session, publisher, and message.  Publishes     * messages after setting their NewsType property and using     * the property value as the message text. Messages are     * received by MessageBean, a message-driven bean that uses a     * message selector to retrieve messages whose NewsType     * property has certain values.     */    public void publishNews() {        Session session = null;        MessageProducer publisher = null;        TextMessage message = null;        int numMsgs = messageTypes.length * 3;        String messageType = null;        try {            session = connection.createSession(true, 0);            publisher = session.createProducer(topic);            message = session.createTextMessage();            for (int i = 0; i < numMsgs; i++) {                messageType = chooseType();                message.setStringProperty("NewsType", messageType);                message.setText("Item " + i + ": " + messageType);                logger.info(                        "PUBLISHER: Setting " + "message text to: "                        + message.getText());                publisher.send(message);            }        } catch (Throwable t) {            // JMSException could be thrown            logger.severe(                    "PublisherBean.publishNews: " + "Exception: "                    + t.toString());            sc.setRollbackOnly();        } finally {            if (session != null) {                try {                    session.close();                } catch (JMSException e) {                }            }        }    }    /**     * Closes the connection.     */    @PreDestroy    public void endConnection() throws RuntimeException {        if (connection != null) {            try {                connection.close();            } catch (Exception e) {                e.printStackTrace();            }        }    }}

⌨️ 快捷键说明

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