• Setting up GlassFish for JMS


    from: https://www.packtpub.com/article/setting-glassfish-jms-working-with-message-queues

    Setting up GlassFish for JMS and Working with MessageQueues

    [ Share this article ]

    Share this page via Facebook, Twitter or LinkedIn.

     
     
     
     
    [ Send this article ]
    [ Save this article ]
    by David R. Heffelfinger | July2010 | Java Open Source

    The JavaMessaging API (JMS)provides a mechanism for Java EE applications to send messages toeach other. JMS applications do not communicate directly, insteadmessage producers send messages to a destination and messageconsumers receive the message from the destination.

    The message destination is a message queue when the point-to-point(PTP) messaging domain is used, or a message topic when thepublish/subscribe (pub/sub) messaging domain is used.

    In this article by DavidHeffelfinger, author of the book JavaEE 6 with GlassFish 3 Application Server, we will cover thefollowing topics:

    • Setting up GlassFish for JMS
    • Working with message queues
     

    (For more resources on Java, see here.)

    Setting up GlassFish for JMS

    Before we start writing code to take advantage of the JMS API, weneed to configure some GlassFish resources. Specifically, we needto set up a JMSconnection factory, a messagequeue, and a messagetopic.

    Setting up a JMS connection factory

    The easiest way to set up a JMS connection factory is viaGlassFish's web console. The web console can be accessed bystarting our domain, by entering the following command in thecommand line:

    asadmin start-domain domain1
    

    Then point the browser to http://localhost:4848 andlog in:

    Setting up GlassFish for JMS and Working with Message Queues

    A connection factory can be added by expandingthe Resources nodein the tree at the left-hand side of the web console, expandingthe JMSResources node and clicking onthe ConnectionFactories node, then clicking onthe New...button in the main area of the web console.

    Setting up GlassFish for JMS and Working with Message Queues

    For our purposes, we can take most of the defaults. The only thingwe need to do is enter aPoolName and pick a ResourceType for our connection factory.

    It is always a good idea to use a PoolName starting with "jms/" when picking a namefor JMS resources. This way JMS resources can be easily identifiedwhen browsing a JNDI tree.

    In the text field labeled PoolName, enter jms/GlassFishBookConnectionFactory.Our code examples later in this article will use this JNDI name toobtain a reference to this connection factory

  • 相关阅读:
    正则表达式() [] {}区别
    JAVA int自动装箱
    Intellij Idea debug 远程部署的的tomcat项目
    TensorFlow MNIST CNN 代码
    线性代数-01-向量究竟是什么
    线性代数-线性代数的本质
    TensorFlow MNIST 入门 代码
    TensorFlow 学习可视化 TensorBoard 简易教程
    TensorFlow 函数
    TensorFlow Demo2
  • 原文地址:https://www.cnblogs.com/leeeee/p/7276719.html
Copyright © 2020-2023  润新知