本文介绍了JMS中的连接创建的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 我是JMS的新手。 我正在努力创造连接使用connectinfactory,但我得到以下异常 线程main中的异常com.sun.messaging.jms.JMSException:[C4003]:错误连接创建时发生[localhost:7676]。 - 原因:java.net.ConnectException:拒绝连接:连接 我用谷歌搜索,我发现了答案。以下是我的代码。请帮助摆脱这个问题 Hi, I'm new to JMS.I'm trying to create connection using connectinfactory but i'm getting following exception Exception in thread "main" com.sun.messaging.jms.JMSException: [C4003]: Error occurred on connection creation [localhost:7676]. - cause: java.net.ConnectException: Connection refused: connect I googled and i din found the answer.Following is my code.please help to get out of tis problemConnectionFactory cf = new com.sun.messaging.ConnectionFactory();Connection connection = cf.createConnection(); 提前致谢 Thanks in advance推荐答案 这篇关于JMS中的连接创建的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
10-27 06:20