我想编写用于在任何jms服务器上发送消息的通用代码。所以我认为如果我有jndi.properties文件,那么我们可以将服务器配置放在这个文件中,我们可以通过代码访问这个文件,但我只能为'ActiveMQ Server'做到这一点。现在我面临着在glassfish服务器或jboss服务器等任何其他服务器上发送消息的问题。有人可以帮助我完成这项任务。
这是我的代码:
public class Producer
{
public Producer() throws JMSException, NamingException,IOException
{
InputStream is = getClass().getResourceAsStream("my.jndi.properties");
Properties jndiParamaters = new Properties();
jndiParamaters.load(is);
Context jndi = new InitialContext(jndiParamaters);
ConnectionFactory conFactory = (ConnectionFactory) jndi.lookup("connectionFactory");
Connection connection;
connection = conFactory.createConnection();
try
{
connection.start();
Session session = connection.createSession(false,Session.AUTO_ACKNOWLEDGE);
Destination destination = (Destination) jndi.lookup("Myqueue");
MessageProducer producer = session.createProducer(destination);
TextMessage message = session.createTextMessage("Hello World!");
producer.send(message);
System.out.println("Sent message '" + message.getText() + "'");
}
finally
{
connection.close();
}
}
public static void main(String[] args) throws JMSException
{
try
{
BasicConfigurator.configure();
new Producer();
}
catch (Exception e)
{
e.printStackTrace();
}
}
}
谢谢
答案 0 :(得分:0)
您是否尝试过使用Spring JMS模板? http://static.springsource.org/spring/docs/2.0.x/reference/jms.html 它为JMS提供了一个抽象层,可能会在您的实现发生变化时为您提供帮助。