博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Message Driven Beans Tutorial(新增的EJB类型,绝对精彩!!!!!) (转)
阅读量:2501 次
发布时间:2019-05-11

本文共 13084 字,大约阅读时间需要 43 分钟。

Message Driven Beans Tutorial(新增的EJB类型,绝对精彩!!!!!) (转)[@more@]

The following tutorial illustrates how a Message Driven Bean is written and deployed in an Enterprise BeansTM 2.0 Container. The M component is invoked by an inbound message from a Java client. This function is demonstrated with a sample application run on Pramati Server 3.0 (Alpha). The Server ships with Pramati Message Server 1.0 and can be ed from . The application s are freely to get a better understanding of how MDB components are written and work.

What is a Message Driven Bean?

A message driven bean is a stateless, server-s, transaction-aware component that is driven by a Java message (javax..message). It is invoked by the Container when a message is received from a JMS Queue or Topic. It acts as a simple message listener.

A Java client, an enterprise bean, a Java ServerPagesTM () component, or a non- application may send the message. The client sending the message to the destination need not be aware of the MDBs deployed in the EJB Container. However, the message must confoto JMS specifications.

Before MDBs were introduced, JMS described a classical approach to implement asynchronous method invocation. The approach used an external Java program that acted as the listener, and on receiving a message, invoked a session bean method.

However, in this approach the message was received outside the application server and was thus not part of a transaction in the EJB Server. MDB solves this problem.

1165983533390.gif
Message processing before (above) and after (below) Message Driven Beans.
1165983533390.gif

Structure of an MDB

  • It has no home or remote interfaces, and is only a bean class.
  • It resembles a stateless session bean - that is, it has short-lived instances and does not retain state for a client.
  • A client interacts with the MDB in the same way it interacts with a JMS application or JMS server.
  • Through the MDB, the EJB 2.0 Container sets itself up as a listener for asynchronous invocation and directly invokes the bean (no interfaces), which then behaves like an enterprise bean.
  • All instances of a particular MDB type are equivalent as they are not directly visible to the client and maintain no conversational state. This means that the Container can pool instances to enhance scalability.

Lifecycle of an MDB

The EJB Container performs several tasks at the beginning of the life cycle of the MDB:

  • Creates a message consumer (a QueueReceiver or TopicSubscriber) to receive the messages
  • Associates the bean with a destination and connection factory at deployment
  • Registers the message listener and the message acknowledgement mode
1165983533390.gif

The lifecycle of an MDB depends on the lifespan of the EJB Server in which it is deployed. As MDBs are stateless, bean instances are typically pooled by the EJB Server and retrieved by the Container when a message becomes available on the topic or queue.

Writing an MDB

Writing an MDB involves the following tasks:

  • Implement the javax.ejb.MessageDrivenBean and javax.jms.MessageListener interfaces in the MDB class.
  • Provide an implementation of the business logic inside the onMessage().
  • Provide a setMessageDrivenContext() method that associates the bean with its environment.
  • Provide an ejbCreate() method that returns void and takes no arguments. This method may be blank.
  • Provide an ejbRemove() method implementation. This method may be blank, unless certain resources need to be acquired before the bean goes out of pe.

Sample application

The tutorial uses a sample application, StockTrader, to illustrate the writing of an MDB. The sample uses a simple message driven bean buyAgentMDB that is contacted by a client which wishes to buy shares. The client looks up the BuyQueue and implements the javax.jms.MessageListener. It provides a private method buy() that takes two arguments: a double value that holds the price and a string (stockSymbol) that holds the scrsymbol.

Sample application components

Client StockServer.java Acts as a Server and displays fluctuations in stock prices.

Destinations
StockMarket A topic where stock price details are published to StockServer BuyQueue A queue on which BuyAgent MDB listens for stocks under buy advise SellQueue A queue on which SellAgent MDB listens for stocks under sell advise

Message Driven Beans
BuyAgentMDB.java Invoked by messages received from BuyQueue and in turn updates the topic StockMarket SellAgentMDB.java Invoked by messages received from SellQueue and in turn updates the topic StockMarket SubscriberBean.java sends client's buy/sell actions to BuyQueue or SellQueue on the message server

  <!-- ***************************Continue body text here --&gt

Defining the MDB Class

An MDB implements two interfaces: javax.jms.MessageListener and javax.ejb.MessageDrivenBean. The MDB class is defined as public and cannot be defined as abstract or final. The MDB class looks like this:

public class BuyAgentMDB implements MessageDrivenBean, MessageListener { private MessageDrivenContext mdbContext;

 

The class must consist of:

  • A public constructor with no argument
  • A single onMessage method
  • public void ejbCreate() with no arguments
  • public void ejbRemove() usually used to free resources allocated in ejbCreate method
  • public void setMessageDrivenContext(MessageDrivenContext mdc) called by the EJB Container after the creation of the instance, without any transaction context

The class must not contain the finalize method.

Implementing business logic

Business logic for the EJB is triggered by the onMessage() method of the MDB. The onMessage() is called by the Container when the JMS Queue or Topic receives a message. The onMessage() does not return any result and has one argument. The full JMS message is passed as an argument.

The signature for the method is:

public void onMessage(Message msg) {}

 

In the sample, when there is a message on the BuyQueue, the onMessage() method of the BuyAgent picks up the message and sends it to the topic StockMarket. The StockRepository in turn looks up this topic.

The following code of the buyAgentMDB performs this function:

public void onMessage(Message msg) { // Retrieves the text message TextMessage priceMessage = (TextMessage) msg; try { } catch(JMSException ex) { ex.printStackTrace(); } }

 

Implementing the ejbCreate method

The ejbCreate() is called at the time of bean instantiation, in order to allocate resources such as connection factories if the bean send messages or datasources, if the bean accesses databases. This method is invoked once in the lifecycle - when the bean is created.

The following code of the BuyAgentMDB performs this function:

public void ejbCreate () throws CreateException { }

 

Providing methods for transactional management

The setMessageDrivenContext provides the methods for transaction management. The BuyAgentMDB implements setMessageDrivenContext. This method is called by the EJB Container to associate the BuyAgent instance. The context is maintained by the Container.

The input parameter for setMessageDrivenContext is an instance of the MessageDrivenContext interface. It gives the MDB access to information about the runtime environment.

In Container-managed transactions, de-queuing occurs out of the onMessage(). The only methods on the MessageDrivenContext that are accessible to the MDB are transaction-related methods.

Removing the instance

This method is invoked when an MDB is being removed from a pool. Application server vendors may implement an arbitrary algorithm that decides when to remove the MDB instances from the pool.

The following code of the BuyAgentMDB performs this function:

public void ejbRemove() { //Removes the bean from the pool }

 

Acknowledging messages

For MDBs that use container-managed transactions, the Container automatically acknowledges a message when the EJB transaction commits. The Container overrides the acknowledgement mode given in the deployment descriptor. If the EJB uses bean-managed transactions, both the receipt and the acknowledgement of a message occur outside the EJB transaction context.

Setting up the response

Some business cases may require responding to the Sender of the message that triggered the MDB. To register the "reply to" destination of the Sender, the client can use getJMSReplyTo header.

The JMSReplyTo header field contains a destination supplied by the client along with the message. It is the destination where a "reply to the message" may be sent. Messages sent with a JMSReply value typically expect a response.

The code to use the JMSReplyTo header looks like this:

public void onMessage(Message msg){ try{ destination d = msg.getJMSReplyTo() } catch(JMSException jmse){} }

 

Deploying the MDB

The destination associated with an MDB is specified in the deployment descriptor of the MDB in the ejb-jar. file. A destination is a JMS-administered object accessible via JNDI.

Here is a sample destination entry in the deployment descriptor:

javax.jms.TopicNonDurable

 

Elements in the deployment descriptor

The description of a MDB in the EJB 2.0 deployment descriptor contains the following specific elements:

  • the JMS acknowledgement mode: auto-acknowledge or dups-ok-acknowledge
  • an eventual JMS message or: this is a JMS concept which allows the filtering of the messages sent to the destination
  • a message-driven-destination, which contains the destination type (Queue or Topic) and the subscription durability (in case of Topic)

The MDB deployment descriptor specifies whether the bean is intended for a Topic or a Queue. A bean set for a Topic can act as a durable subscriber guaranteeing that the listener receives all messages even if the listener is unavailable for some time. The deployment descriptor also sets transaction demarcation and security.

If the transaction type is "container", the transactional behavior of MDB methods is defined as for other enterprise beans in the deployment descriptor.

Here is the entry for the transaction type in the deployment descriptor:

ContainerAuto-acknowledge

 

For the onMessage method, only the Required or NotSupported transaction attribute must be used as there are no incoming transaction context.

The important thing to notice is that the deployment descriptor contains all the information except the destination name required to deploy a message-driven bean. The destination name is set in an application server's vendor-specific configuration file or as a system property (deploy time map).


Running the sample

Configuring the Message Server

By default, the following destinations are entered in the configuration file of the Message Server:

  • BuyQueue
  • SellQueue
  • StockMarket

The configuration file is located in the directory

[install_dir]/jms/config/jms-config.xml, where [install_dir] is the installation directory of Pramati Server 3.0.

Deployment steps

The following steps will deploy the application on Pramati Server:

  1. Start Pramati Server along with the JMS Server.
  2. Start the Pramati Management Console from the shortcut. users must run runadmin.sh from the Server installation directory.
  3. In the Console, select Server > Start from the main menu. This brings up the Start Server dialog where the J2EE Server to start is identified. Check the Start JMS Server option to start the Message Server along with the J2EE Server. This is essential to be able to run the message driven beans.
Note: For more details on operating Pramati Server, refer online product documentation at .

Deploying the application

When the Server starts, click on the Deploy button in the view panel of the Console to start the Deploy Tool.

Select Archive > Open and open the application stockapp.ear from the following location:

[install_dir]/samples/mdb/

where 
[install_dir] is the installation directory of Pramati Server 3.0.

Deploy the application.

Running the client

Set the classpath as follows:

Windows

Run the file run.bat from the directory

[install_dir]/samples/mdb

 

Add the following location of the application classes to the client classpath:

[install_dir]/server/samples/mdb/classes

where 
[install_dir] is the installation directory of Pramati Server 3.0.

Unix

export CLASSPATH=$install_/server/samples/mdb/classes:%$CLASSPATH

 

Starting the stock repository

The stock repository is run by the client StockServer.java. Start the client by executing:

java com.pramati.samples.mdb.StockServer

 

This brings up the stock repository panel which displays the scrip and the price along with a Buy/Sell advisory message.

Observe the price fluctuates every time buying or selling happens.


Summary

MDBs overcome the limitations of synchronous messaging using session and entity beans in the EJB 1.1 container. MDBs can be deployed in the EJB 2.0 Container, which acts as a message listener and uses inbound messages as a trigger to invoke business methods in an asynchronous manner.

This tutorial outlined the steps involved in writing an MDB using a sample application that may be downloaded from .

For further information, contact to:support@pramati.com" rel="nofollow">support@pramati.com.

来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/10748419/viewspace-1007831/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/10748419/viewspace-1007831/

你可能感兴趣的文章
获取推送通知的DeviceToken
查看>>
Could not find a storyboard named 'Main' in bundle NSBundle
查看>>
CocoaPods安装和使用教程
查看>>
Beginning Auto Layout Tutorial
查看>>
block使用小结、在arc中使用block、如何防止循环引用
查看>>
iPhone开发学习笔记002——Xib设计UITableViewCell然后动态加载
查看>>
iOS开发中遇到的问题整理 (一)
查看>>
Swift code into Object-C 出现 ***-swift have not found this file 的问题
查看>>
为什么你的App介绍写得像一坨翔?
查看>>
RTImageAssets插件--@3x可自动生成@2x图片
查看>>
iOS开发的一些奇巧淫技
查看>>
linux的挂载的问题,重启后就挂载就没有了
查看>>
docker原始镜像启动容器并创建Apache服务器实现反向代理
查看>>
docker容器秒死的解决办法
查看>>
管理网&业务网的一些笔记
查看>>
openstack报错解决一
查看>>
openstack报错解决二
查看>>
linux source命令
查看>>
openstack报错解决三
查看>>
乙未年年终总结
查看>>