我有两个SpringBoot应用程序,我使用RabbitMQ在队列中传递消息。一个应用程序用于发送消息,另一个应用程序用于侦听已发送的消息。每个应用程序都包含一个@SpringBootApplication文件,该文件在属性级别具有一个@Autowired依赖项(一个应用程序具有发送方,另一个应用程序具有侦听器),每个应用程序都有一个单独的Spring @Configuration文件,每个文件声明一个bean(一个具有发送方)一个有接收器)。
由于某种原因,Sender应用程序没有注入问题,但是,即使bean在我的应用程序上下文中,Receiver应用程序也没有注入@Autowire。我正在使用示例应用程序作为向我们公司演示带有SpringBoot和微服务的RabbitMQ / SpringAMQP的方法。下面是发件人应用程序的代码,后面是Receiver Application。如果我将Receiver应用程序更改为使用Setter注入它可以正常工作,我只是很好奇为什么其中一个工作而另一个工作没有。 Receiver应用程序在其主方法中激活了receiver.receive(),如下所示:
线程“main”java.lang.NullPointerException中的异常 在com.bettercloud.SpringAmqpApplication.main(SpringAmqpApplication.java:17)
接收人申请:
@SpringBootApplication
public class SpringAmqpApplication {
@Autowired
static Recv receiver;
public static void main(String[] args) throws IOException,InterruptedException {
SpringApplication.run(SpringAmqpApplication.class, args);
receiver.receive();
}
}
@Configuration
public class Config {
@Bean
public Recv recv(){
return new Recv();
}
}
public class Recv {
private final static String QUEUE_NAME = "task_queue";
public void receive()
throws java.io.IOException,
InterruptedException {
ConnectionFactory factory = new ConnectionFactory();
factory.setHost("localhost");
Connection connection = factory.newConnection();
Channel channel = connection.createChannel();
channel.queueDeclare(QUEUE_NAME, true, false, false, null);
System.out.println(" [*] Waiting for messages. To exit press CTRL+C");
channel.basicQos(1);
QueueingConsumer consumer = new QueueingConsumer(channel);
channel.basicConsume(QUEUE_NAME, false, consumer);
while (true) {
QueueingConsumer.Delivery delivery = consumer.nextDelivery();
String message = new String(delivery.getBody());
System.out.println(" [x] Received '" + message + "'");
doWork(message);
System.out.println(" [x] Done");
channel.basicAck(delivery.getEnvelope().getDeliveryTag(), false);
}
}
private static void doWork(String task) throws InterruptedException {
for (char ch: task.toCharArray()) {
if (ch == '.') Thread.sleep(1000);
}
}
}
发件人申请:
@SpringBootApplication
public class SpringAmqpProducerApplication {
@Autowired
static Send sender;
public static void main(String[] args) throws IOException {
SpringApplication.run(SpringAmqpProducerApplication.class, args);
sender.send(null);
}
}
@Configuration
public class Config {
@Bean
public Send send(){
return new Send();
}
}
public class Send {
private final static String QUEUE_NAME = "task_queue";
public static void send(String[] argv)
throws java.io.IOException {
Connection connection = null;
Channel channel = null;
try {
ConnectionFactory factory = new ConnectionFactory();
factory.setHost("localhost");
connection = factory.newConnection();
channel = connection.createChannel();
channel.queueDeclare(QUEUE_NAME, true, false, false, null);
String message = getMessage(argv);
channel.basicPublish("", QUEUE_NAME, MessageProperties.PERSISTENT_TEXT_PLAIN, message.getBytes());
System.out.println(" [x] Sent '" + message + "'");
} finally {
channel.close();
connection.close();
}
}
private static String getMessage(String[] strings){
if (strings == null || strings.length < 1)
return "Hello World!";
return joinStrings(strings, " ");
}
private static String joinStrings(String[] strings, String delimiter) {
int length = strings.length;
if (length == 0) return "";
StringBuilder words = new StringBuilder(strings[0]);
for (int i = 1; i < length; i++) {
words.append(delimiter).append(strings[i]);
}
return words.toString();
}
}
答案 0 :(得分:1)
我认为注入根本不起作用,因为你试图注入静态字段,这对Spring不起作用。从您的字段(以及您的方法中删除静态标识符,因为它们也没有理由是静态的)并且您的应用程序应该可以正常工作。
发件人工作,因为send方法是静态的,所以你不需要一个对象来调用该方法。
答案 1 :(得分:1)
不确定这是否有帮助,但Send类中的send()方法是静态的,而Receive类的receive()方法则不是。