gpt4 book ai didi

spring - 使用 RabbitTemplate 或 AmqpTemplate 哪一个?

转载 作者:行者123 更新时间:2023-12-01 12:19:03 27 4
gpt4 key购买 nike

我有以下程序写在Spring Boot这工作正常。但是,问题是我不确定是否应该使用 RabbitTemplateAmqpTemplate .一些在线示例/教程使用RabbitTemplate而其他人则使用 AmqpTemplate .

请指导什么是最佳实践以及应该使用哪一个。

@SpringBootApplication
public class BasicApplication {

private static RabbitTemplate rabbitTemplate;
private static final String QUEUE_NAME = "helloworld.q";

//this definition of Queue is required in RabbitMQ. Not required in ActiveMQ
@Bean
public Queue queue() {
return new Queue(QUEUE_NAME, false);
}

public static void main(String[] args) {
try (ConfigurableApplicationContext ctx = SpringApplication.run(BasicApplication.class, args)) {
rabbitTemplate = ctx.getBean(RabbitTemplate.class);
rabbitTemplate.convertAndSend(QUEUE_NAME, "Hello World !");
}
}

}

最佳答案

在大多数情况下,对于 Spring bean,我建议使用该接口(interface),以防 Spring 出于任何原因创建 JDK 代理。这对于 RabbitTemplate 来说是不寻常的。所以你使用哪个并不重要。

在某些情况下,您可能需要 RabbitTemplate 上的方法。没有出现在界面上的;这将是您需要使用它的另一种情况。

不过,一般来说,最佳实践是让用户代码使用接口(interface),这样您就不会对实现产生硬依赖。

关于spring - 使用 RabbitTemplate 或 AmqpTemplate 哪一个?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45875167/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com