aws-sdk-java-v2-dynamodb
仓库创建 2025年10月21日最近提交 1 个月前SkillHot 收录 22 天前
▸ 精选理由
含增强客户端和事务/批量示例,能加速常见 NoSQL 操作开发。
▸ 风险提示
需要 AWS 权限并注意大规模操作可能产生费用或吞吐限制。
这个 Skill 做什么
提供使用 AWS SDK for Java 2.x 操作 DynamoDB(CRUD、查询、事务、批量)的示例与模式。
覆盖用 AWS SDK for Java v2 操作 DynamoDB 的常见模式:类型安全的 CRUD、Query/Scan、批量操作和事务(transaction),并示例了索引和与 Spring Boot 的集成。适合在 Java 应用中做大表读写、按 sort key 或 GSI 查询、批量导入或跨表原子操作时参考。特别之处是用了 Enhanced Client 简化对象映射,并示范事务与批处理的最佳实践。
▸ 展开 SKILL.md 英文原文
Provides Amazon DynamoDB patterns using AWS SDK for Java 2.x. Use when creating, querying, scanning, or performing CRUD operations on DynamoDB tables, working with indexes, batch operations, transactions, or integrating with Spring Boot applications.
311
Stars
37
Forks
40
仓库内 Skill
+10
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/giuseppe-trisciuoglio/developer-kit/main/plugins/developer-kit-java/skills/aws-sdk-java-v2-dynamodb/SKILL.md或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/giuseppe-trisciuoglio/developer-kit/main/plugins/developer-kit-java/skills/aws-sdk-java-v2-dynamodb/SKILL.md"SKILL.MD 节选查看完整文件 ↗
# AWS SDK for Java 2.x - Amazon DynamoDB ## Overview Provides DynamoDB patterns using AWS SDK for Java 2.x with Enhanced Client for type-safe CRUD, queries, batch operations, transactions, and Spring Boot integration. ## When to Use - CRUD operations on DynamoDB items - Querying tables with sort keys or GSI - Batch operations for multiple items - Atomic transactions across tables - Spring Boot integration with DynamoDB ## Instructions 1. Add AWS SDK DynamoDB dependencies to `pom.xml` 2. Configure client setup (low-level or Enhanced Client) 3. Define entity classes with `@DynamoDbBean` annotations 4. Perform operations using `DynamoDbTable` (CRUD, query, scan, batch, transactions) 5. Ha
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有