DynamoDBMapper Java

Programming 2023. 12. 27. 18:19
// DynamoDBMapper

// 객체 선언
@Autowired
private DynamoDBMapper dynamoDBMapper;

// 검색 조건으로 사용할 Attribute의 Value 지정
HashMap<String, AttributeValue> eav = new HashMap<>();
eav.put(":author", new AttributeValue().withS(author));

// Scan 방식. DB 전체를 조회하므로 속도 느림. Query 방식 권장
DynamoDBScanExpression scanExp = 
	new DynamoDBScanExpression()
		.withFilterExpression("author = :v1")
		.withExpressionAttributeValues(eav);

// Scan 할 Page 계산
int totalItemCount = dynamoDBMapper.count(Article.class, scanExp);
int pageUnitCount = 10;
int totalSegmentCount = totalItemCount / pageUnitCount + (totalItemCount % pageUnitCount == 0 ?  0 : 1);

// Scan 실행
// withTotalSegments와 withTotalSegments와 withSegment로 Page Navigation 구현
ScanResultPage<Article> page = dynamoDBMapper.scanPage(Article.class, scanExp.withTotalSegments(totalSegmentCount).withSegment(pageNo - 1));

String keyConditionExpression = "author = :author";
String filterConditionExpression = "articleId = :articleId";
DynamoDBQueryExpression<Article> scanExp =
	new DynamoDBQueryExpression<Article>()
		.withKeyConditionExpression(keyConditionExpression)  // Partition Key
		.withFilterExpression(filterConditionExpression)  // Sort Key 
		.withIndexName(indexName)  // Index 지정
		.withExpressionAttributeValues(eav)  // Attribute 값 지정
		.withScanIndexForward(false)  // 정렬키로 리스트 정렬(true: 오름차순, false: 내림차순)
		.withLimit(limit); // 개수 제한
QueryResultPage<Article> page = dynamoDBMapper.queryPage(Article.class, scanExp);  // Query 실행
List<Article> items = page.getResults();  // 결과 저장

'Programming' 카테고리의 다른 글

웹팩 등장 배경에 대한 이해  (0) 2024.02.13
SQL? NoSQL? NO!  (1) 2023.12.27
Dynamo DB 특징 및 단점  (1) 2023.12.27
격세지감 크로스플랫폼  (0) 2023.12.09
MySQL SQL Password Length 오류  (0) 2022.06.30
admin