|
|
@ -16,49 +16,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
package sample.amqp;
|
|
|
|
package sample.amqp;
|
|
|
|
|
|
|
|
|
|
|
|
import org.springframework.amqp.core.AmqpTemplate;
|
|
|
|
import java.util.Date;
|
|
|
|
import org.springframework.amqp.rabbit.connection.ConnectionFactory;
|
|
|
|
|
|
|
|
import org.springframework.amqp.rabbit.listener.SimpleMessageListenerContainer;
|
|
|
|
import org.springframework.amqp.core.Queue;
|
|
|
|
import org.springframework.amqp.rabbit.listener.adapter.MessageListenerAdapter;
|
|
|
|
import org.springframework.amqp.rabbit.annotation.RabbitHandler;
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
import org.springframework.amqp.rabbit.annotation.RabbitListener;
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
|
import org.springframework.context.annotation.Bean;
|
|
|
|
import org.springframework.context.annotation.Bean;
|
|
|
|
import org.springframework.scheduling.annotation.ScheduledAnnotationBeanPostProcessor;
|
|
|
|
import org.springframework.messaging.handler.annotation.Payload;
|
|
|
|
|
|
|
|
import org.springframework.scheduling.annotation.EnableScheduling;
|
|
|
|
|
|
|
|
|
|
|
|
@SpringBootApplication
|
|
|
|
@SpringBootApplication
|
|
|
|
|
|
|
|
@RabbitListener(queues = "foo")
|
|
|
|
|
|
|
|
@EnableScheduling
|
|
|
|
public class SampleAmqpSimpleApplication {
|
|
|
|
public class SampleAmqpSimpleApplication {
|
|
|
|
|
|
|
|
|
|
|
|
@Autowired
|
|
|
|
|
|
|
|
private AmqpTemplate amqpTemplate;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Autowired
|
|
|
|
|
|
|
|
private ConnectionFactory connectionFactory;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Bean
|
|
|
|
|
|
|
|
public ScheduledAnnotationBeanPostProcessor scheduledAnnotationBeanPostProcessor() {
|
|
|
|
|
|
|
|
return new ScheduledAnnotationBeanPostProcessor();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Bean
|
|
|
|
@Bean
|
|
|
|
public Sender mySender() {
|
|
|
|
public Sender mySender() {
|
|
|
|
return new Sender();
|
|
|
|
return new Sender();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Bean
|
|
|
|
@Bean
|
|
|
|
public SimpleMessageListenerContainer container() {
|
|
|
|
public Queue fooQueue() {
|
|
|
|
SimpleMessageListenerContainer container = new SimpleMessageListenerContainer(
|
|
|
|
return new Queue("foo");
|
|
|
|
this.connectionFactory);
|
|
|
|
|
|
|
|
Object listener = new Object() {
|
|
|
|
|
|
|
|
@SuppressWarnings("unused")
|
|
|
|
|
|
|
|
public void handleMessage(String foo) {
|
|
|
|
|
|
|
|
System.out.println(foo);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
MessageListenerAdapter adapter = new MessageListenerAdapter(listener);
|
|
|
|
@RabbitHandler
|
|
|
|
container.setMessageListener(adapter);
|
|
|
|
public void process(@Payload String foo) {
|
|
|
|
container.setQueueNames("foo");
|
|
|
|
System.out.println(new Date() + ": " + foo);
|
|
|
|
return container;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static void main(String[] args) throws Exception {
|
|
|
|
public static void main(String[] args) throws Exception {
|
|
|
|