For example file to different folder and rename it
This commit is contained in:
parent
5dd4ee6f0f
commit
62bef73c7e
|
@ -1,38 +0,0 @@
|
|||
package com.baeldung.springamqp.simple;
|
||||
|
||||
import org.springframework.amqp.core.Queue;
|
||||
import org.springframework.amqp.rabbit.annotation.RabbitListener;
|
||||
import org.springframework.amqp.rabbit.core.RabbitTemplate;
|
||||
import org.springframework.boot.ApplicationRunner;
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
import org.springframework.context.annotation.Bean;
|
||||
|
||||
@SpringBootApplication
|
||||
public class HelloWorldMessageApp {
|
||||
|
||||
private static final boolean NON_DURABLE = false;
|
||||
private static final String MY_QUEUE_NAME = "myQueue";
|
||||
|
||||
public static void main(String[] args) {
|
||||
SpringApplication.run(HelloWorldMessageApp.class, args);
|
||||
}
|
||||
|
||||
@Bean
|
||||
public ApplicationRunner runner(RabbitTemplate template) {
|
||||
return args -> {
|
||||
template.convertAndSend("myQueue", "Hello, world!");
|
||||
};
|
||||
}
|
||||
|
||||
@Bean
|
||||
public Queue myQueue() {
|
||||
return new Queue(MY_QUEUE_NAME, NON_DURABLE);
|
||||
}
|
||||
|
||||
@RabbitListener(queues = MY_QUEUE_NAME)
|
||||
public void listen(String in) {
|
||||
System.out.println("Message read from myQueue : " + in);
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue