我在我的java应用程序中使用了RabbitMQ。我使用了amqp-client3.1.3.jar。但是在jboss中部署我的代码时得到java.lang.NoClassDefFoundError:com / rabbitmq / client / ConnectionFactory。如何解决?
public class Exapmle {
static Connection connection = null;
static Channel channel = null;
static ConnectionFactory factory = null;
private Example() {
try {
factory = new ConnectionFactory();
//--code goes here---//
}
我在ejb中编写了相同的代码,这些代码是在wildfly中安排和部署的。我看到了将依赖项添加到jboss设置的解决方案。我该怎么做?