package preserveOther.config; import org.springframework.amqp.core.Queue; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; @Configuration public class Queues { public final static String queueName = "email"; @Bean public Queue emailQueue() { return new Queue(queueName); } }