gpt4 book ai didi

java - JMS消息监听器Weblogic的并发处理

转载 作者:塔克拉玛干 更新时间:2023-11-03 03:50:18 28 4
gpt4 key购买 nike

我在 JMS 上运行测试用例,发现处理是顺序的。当我向使用 JMS 发送消息的 servlet 发出 200 个请求时,接收者(messageListner)按顺序接收请求。如何接收并发请求?我们有什么参数要设置吗?我阅读了 JMS 教程和 API,它们在同一 session 中按顺序传递消息,即使我为每个发送请求创建一个新 session ,接收端的 10 个 session 仍然按顺序处理。

public class ProducerServlet extends javax.servlet.http.HttpServlet implements
javax.servlet.Servlet {

// Defines the JNDI context factory.
public final static String JNDI_FACTORY = "weblogic.jndi.WLInitialContextFactory";

// Defines the JMS context factory.
public final static String JMS_FACTORY = "jms/TestConnectionFactory";

// Defines the queue.
public final static String QUEUE = "jms/TestJMSQueue";

public final static String TOPIC = "jms/TestTopic";

TestJMSListener jms = new TestJMSListener();
ConnectionFactory connectionFactory = null;
Queue dest1 = null;
Topic dest =null;
Connection connection = null;
MessageProducer producer = null;

protected void doGet(HttpServletRequest request,
HttpServletResponse response) throws ServletException, IOException {
try {
connection = connectionFactory.createConnection();

Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
producer = session.createProducer(dest1);
TextMessage message = session.createTextMessage();

message.setText("This is message from JMSSECOND DEMO "
+ request.getParameter("Num"));
System.out.println("Sending message: " + message.getText());
producer.send(message);
producer.send(session.createMessage());
} catch (Exception e) {
System.out.println("Exception occurred: " + e.toString());
}

}

@Override
public void init(ServletConfig arg0) throws ServletException {
Context jndiContext = null;
try {

Hashtable env = new Hashtable();
env.put(Context.INITIAL_CONTEXT_FACTORY, JNDI_FACTORY);
env.put(Context.PROVIDER_URL, "http://localhost:7001");
jndiContext = new InitialContext(env);
} catch (NamingException e) {
System.out.println("Could not create JNDI API context: "
+ e.toString());
}

try {
connectionFactory = (ConnectionFactory) jndiContext
.lookup(JMS_FACTORY);
dest1 = (Queue) jndiContext.lookup(QUEUE);
} catch (Exception e) {
System.out.println("JNDI API lookup failed: " + e.toString());
e.printStackTrace();
}

}

}

Listner 实现,在收到消息后我要去 sleep (做一秒钟的事情)。

public class TestJMSListener implements MessageListener {

// Defines the JNDI context factory.
public final static String JNDI_FACTORY = "weblogic.jndi.WLInitialContextFactory";

// Defines the JMS context factory.
public final static String JMS_FACTORY = "jms/TestConnectionFactory";

// Defines the queue.
public final static String QUEUE = "jms/TestJMSQueue";

public final static String TOPIC = "jms/TestTopic";

public TestJMSListener() {

System.out.println("********* Consumer check **********");

Context jndiContext = null;
ConnectionFactory connectionFactory = null;
Connection connection[] = null;
Session session[] = null;
Queue dest1 = null;
Topic dest = null;
MessageConsumer consumer[] = null;
// TextMessage message = null;

try {
Hashtable env = new Hashtable();
env.put(Context.INITIAL_CONTEXT_FACTORY, JNDI_FACTORY);
env.put(Context.PROVIDER_URL, "http://localhost:7001");
jndiContext = new InitialContext(env);
} catch (NamingException e) {
System.out.println("Could not create JNDI API context: "
+ e.toString());
System.exit(1);
}

try {
connectionFactory = (ConnectionFactory) jndiContext
.lookup(JMS_FACTORY);
dest1 = (Queue) jndiContext.lookup(QUEUE);
} catch (Exception e) {
System.out.println("JNDI API lookup failed: " + e.toString());
System.exit(1);
}
connection = new Connection[10];
session = new Session[10];
consumer = new MessageConsumer[10];
for (int i = 0; i < 10; i++) {
try {

connection[i] = connectionFactory.createConnection();
session[i] = connection[i].createSession(false,
Session.AUTO_ACKNOWLEDGE);
consumer[i] = session[i].createConsumer(dest);
consumer[i].setMessageListener(this);
connection[i].start();
} catch (JMSException e) {
System.out.println("Exception occurred: " + e.toString());
}
}
}

@Override
public void onMessage(Message m) {

if (m instanceof TextMessage) {
TextMessage message = (TextMessage) m;
try {
System.out.println("Reading message from Listener: "
+ new Date() + message.getText());
Thread.sleep(1000);
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}

}

}

我使用的是 Weblogic 11g,ConnectionFactory 和 Queue 的默认配置。当我使用主题时,它实际上每秒只传送一条消息(即在第一条消息完成后),而对于队列,它每秒传送 2 到 3 条消息。如何让我的监听器支持并发处理。

最终解决方案

添加了更多的监听器对象,在监听器中安装了多个 session /消费者,它解决了这个问题。在下面找到修改后的代码。

public class ProducerServlet extends javax.servlet.http.HttpServlet implements
javax.servlet.Servlet {

// Defines the JNDI context factory.
public final static String JNDI_FACTORY = "weblogic.jndi.WLInitialContextFactory";

// Defines the JMS context factory.
public final static String JMS_FACTORY = "jms/TestConnectionFactory";

// Defines the queue.
public final static String QUEUE = "jms/TestJMSQueue";

public final static String TOPIC = "jms/TestTopic";
TestJMSListener listeners[] = new TestJMSListener[20];
ConnectionFactory connectionFactory = null;
Queue dest1 = null;
Topic dest =null;
Connection connection = null;
MessageProducer producer = null;

protected void doGet(HttpServletRequest request,
HttpServletResponse response) throws ServletException, IOException {
try {
connection = connectionFactory.createConnection();

Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
producer = session.createProducer(dest1);
TextMessage message = session.createTextMessage();

message.setText("This is message from JMSSECOND DEMO "
+ request.getParameter("Num"));
System.out.println("Sending message: " + message.getText());
producer.send(message);
producer.send(session.createMessage());
} catch (Exception e) {
System.out.println("Exception occurred: " + e.toString());
}

}

@Override
public void init(ServletConfig arg0) throws ServletException {
Context jndiContext = null;
try {

Hashtable env = new Hashtable();
env.put(Context.INITIAL_CONTEXT_FACTORY, JNDI_FACTORY);
env.put(Context.PROVIDER_URL, "http://localhost:7001");
jndiContext = new InitialContext(env);
} catch (NamingException e) {
System.out.println("Could not create JNDI API context: "
+ e.toString());
}

try {
connectionFactory = (ConnectionFactory) jndiContext
.lookup(JMS_FACTORY);
dest1 = (Queue) jndiContext.lookup(QUEUE);
for(int i=0;i<listeners.length;i++ ){
listeners[i]=new TestJMSListener(Integer.toString(i+1));
}

} catch (Exception e) {
System.out.println("JNDI API lookup failed: " + e.toString());
e.printStackTrace();
}

}

}


public class TestJMSListener implements MessageListener {

// Defines the JNDI context factory.
public final static String JNDI_FACTORY = "weblogic.jndi.WLInitialContextFactory";

// Defines the JMS context factory.
public final static String JMS_FACTORY = "jms/TestConnectionFactory";

// Defines the queue.
public final static String QUEUE = "jms/TestJMSQueue";

public final static String TOPIC = "jms/TestTopic";

public String listnerNum = "";
public TestJMSListener(String listerNo) {
super();
System.out.println("********* Consumer check **********");
listnerNum = listerNo;
Context jndiContext = null;
ConnectionFactory connectionFactory = null;
Connection connection = null;
Session session = null;
Queue dest1 = null;
Topic dest = null;
MessageConsumer consumer = null;
// TextMessage message = null;

try {
Hashtable env = new Hashtable();
env.put(Context.INITIAL_CONTEXT_FACTORY, JNDI_FACTORY);
env.put(Context.PROVIDER_URL, "http://localhost:7001");
jndiContext = new InitialContext(env);
} catch (NamingException e) {
System.out.println("Could not create JNDI API context: "
+ e.toString());
System.exit(1);
}

try {
connectionFactory = (ConnectionFactory) jndiContext
.lookup(JMS_FACTORY);
dest1 = (Queue) jndiContext.lookup(QUEUE);
} catch (Exception e) {
System.out.println("JNDI API lookup failed: " + e.toString());
System.exit(1);
}
try{
connection = connectionFactory.createConnection();
session = connection.createSession(false,
Session.AUTO_ACKNOWLEDGE);
consumer = session.createConsumer(dest1);
consumer.setMessageListener(this);
connection.start();
} catch (JMSException e) {
System.out.println("Exception occurred: " + e.toString());
}


}

@Override
public void onMessage(Message m) {

if (m instanceof TextMessage) {
TextMessage message = (TextMessage) m;
try {
System.out.println("Reading message from Listener: "+listnerNum+ " : "
+ new Date() + message.getText());
Thread.sleep(1000);
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}

}

}

最佳答案

在您的代码中,您只有一个 Listener 实例(在创建 Servlet 实例时创建),因此您将只接收顺序消息,
无论您有多少个发送者 session ......它只是队列。
如果你想同时接收,那么你可能需要多个监听器,并且只有一个消息将在任何一个监听器中传递。
如果你想同时处理消息,一旦它被顺序传递,然后创建线程池并在单独的线程中委托(delegate)进程并返回到监听模式。
注意** 在此模式下,您可能无法正确处理 Ack 模式,因为您在未完成消息过程的情况下进行确认。

关于java - JMS消息监听器Weblogic的并发处理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20298969/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com