私は jms の初心者で、メッセージを生成および消費する単純な Web アプリを実行しようとしています。私のウェルカムページには、テキストボックスと送信ボタンのあるフォームがあります。送信時に、テキスト ボックス内のテキストはメッセージでラップされ、MessageProducer を介してサーバー上のキューに送信されます。私が理解していることから、このメッセージは、消費者がそのキューにリンクされている MessageConsumer から receive メソッドを呼び出すまで、キューに残る必要があります。残念ながら、「Get Messages」ボタンをクリックした2番目のjspページで、受信したメッセージがnullになります。私はそれらが適切に送信されていると確信しています(少なくともそうではないというエラーはありません)それを確認する方法はありますか?何がうまくいかないのかについてのアイデアはありますか?前もって感謝します。生産者/消費者コードをここに示します。
public class Producer {
private static final String CONNECTION_FACTORY = "connectionFactory";
private static final String CONNECTION_QUEUE = "jms/myqueue";
private static final String CONNECTION_TOPIC = "jms/mytopic";
public Producer(String message) {
ConnectionFactory connectionFactory = null;
Connection connection = null;
//Get the JNDI Context
try {
Context jndiContext = new InitialContext();
//Create the Connection Factory and Connection
connectionFactory = (ConnectionFactory) jndiContext.lookup(Producer.CONNECTION_FACTORY);
connection = connectionFactory.createConnection();
//Create the session
Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
publishToQueue(jndiContext, session, message);
session.commit();
} catch (NamingException e) {
} catch (JMSException e) {
}finally{
//close connection
}
}
private void publishToQueue(Context jndiContext, Session session, String message) throws NamingException, JMSException{
//Create Queue
Queue queue = (Queue) jndiContext.lookup(Producer.CONNECTION_QUEUE);
//Create Message Producer
MessageProducer producer = session.createProducer(queue);
//Send TextMessage
producer.setDeliveryMode(DeliveryMode.PERSISTENT);
TextMessage textMessage = session.createTextMessage();
textMessage.setText(message);
producer.send(textMessage);
producer.close();
}
}
public class Consumer {
private static final String CONNECTION_FACTORY = "connectionFactory";
private static final String CONNECTION_QUEUE = "jms/myqueue";
private static final String CONNECTION_TOPIC = "jms/mytopic";
private Message message;
public Consumer() {
ConnectionFactory connectionFactory = null;
Connection connection = null;
//Get the JNDI Context
try {
Context jndiContext = new InitialContext();
//Create the Connection Factory
connectionFactory = (ConnectionFactory) jndiContext.lookup(Consumer.CONNECTION_FACTORY);
connection = connectionFactory.createConnection();
//Create the session
Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
//Call methods to retrieve message
message = getFromQueue(jndiContext, session);
session.commit();
if(message!=null){
System.out.println("Message Received");
}
} catch (NamingException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (JMSException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}finally{
try {
if(connection != null){
connection.close();
}
} catch (JMSException e) {
e.printStackTrace();
}
}
}
private Message getFromQueue(Context jndiContext, Session session) throws NamingException, JMSException{
//Create new Queue
Queue queue = (Queue)jndiContext.lookup(Consumer.CONNECTION_QUEUE);
//Create Message Consumer
MessageConsumer consumer = session.createConsumer(queue);
return consumer.receive(10000);
}
public Message getMessage(){
return message;
}
}