Spring AMQP 1.1.4.RELEASE 是 Spring AMQP 项目的一个较老版本(发布于2013年左右),属于 Spring 生态中用于简化 AMQP(Advanced Message Queuing Protocol,如 RabbitMQ)集成的模块。该版本基于 Spring Framework 3.1.x 和 AMQP Client 3.1.x,提供了对消息发送/接收、声明队列/交换器、监听容器(SimpleMessageListenerContainer)、模板(AmqpTemplate)等核心功能的支持。
⚠️ 注意:
- 1.1.4.RELEASE 已严重过时,不再受官方支持,存在已知安全漏洞和兼容性问题(例如不兼容 Java 8+ 的某些特性、无对 Spring Boot 的原生支持、缺乏现代 RabbitMQ 特性如 quorum queues、stream support 等)。
- 当前推荐使用 Spring AMQP 3.x(配合 Spring Boot 3.x / Jakarta EE 9+ / Java 17+)或 2.4.x(如需兼容 Spring Boot 2.7.x / Java 11)。
✅ 替代建议:
- 新项目请使用 Spring Boot Starter AMQP(自动配置
RabbitTemplate、@RabbitListener等); - 查看最新版发布日志:https://github.com/spring-projects/spring-amqp/releases
- 迁移参考:Spring AMQP Migration Guide
<!-- Maven 示例(不推荐用于新项目) -->
<dependency>
<groupId>org.springframework.amqp</groupId>
<artifactId>spring-rabbit</artifactId>
<version>1.1.4.RELEASE</version>
</dependency>
Spring-AMQP 1.1.4.RELEASE is now Available
We are pleased to announce that Spring-AMQP 1.1.4.RELEASE is now available.
This is a minor maintenance release with fixes to a few minor issues in the AMQP Log4j Appender, as well as correcting an issue in the spring-rabbit manifest for OSGI users.
Release notes can be found here.
The project home page is here, where you can find links to documentation, downloads and APIs.
comments powered by Disqus


Spring AMQP 1.1.4.RELEASE版本现已发布,这是一个维护更新,修复了AMQP Log4j Appender的一些小问题,并解决了spring-rabbit清单在OSGI环境下的问题。此版本包含了一些小的bug修复和改进。
2270

被折叠的 条评论
为什么被折叠?



