英文原文:https://spring.io/projects/spring-cloud-aws
目录
Spring Cloud for Amazon Web Services是Spring Cloud项目的一部分,可以简化与托管Amazon Web Services的集成。它提供了一种使用众所周知的Spring习语和API(如消息传递或缓存API)与AWS提供的服务进行交互的便捷方式。开发人员可以围绕托管服务构建应用程序,而无需关心基础结构或维护。
@MessageMapping("logicalQueueName")
private void receiveMessage(Person person, @Header("SenderId") String senderId) {
// ...
}
@Controller
@RequestMapping("/sns/receive")
public class SnsEndpointController {
@NotificationMessageMapping
public void receiveNotification(@NotificationMessage String message, @NotificationSubject String subject) {
// ...
}
@NotificationSubscriptionMapping
public void confirmSubscription(NotificationStatus notificationStatus) {
notificationStatus.confirmSubscription();
}
snsTemplate.sendNotification("SnsTopic", "message", "subject");
sqsTemplate.convertAndSend("Queue", new Person("John", "Doe"));
使用Spring Initializr引导您的应用程序。
每个Spring项目都有自己的; 它详细解释了如何使用项目功能以及使用它们可以实现的功能。
2.1.0 RC1 PRE CURRENT | Reference Doc. | API Doc. |
2.0.2 SNAPSHOT CURRENT | Reference Doc. | API Doc. |
2.0.1 CURRENT GA | Reference Doc. | API Doc. |
1.2.4 SNAPSHOT CURRENT | Reference Doc. | API Doc. |
1.2.3 CURRENT GA | Reference Doc. | API Doc. |
1.1.4 GA | Reference Doc. | API Doc. |
1.0.4 GA | Reference Doc. | API Doc. |
尝试一些例子: