feat : 리뷰 조회 추가

This commit is contained in:
lsh9672
2025-06-18 13:25:12 +09:00
parent 2eefb269e6
commit 458f532b31
9 changed files with 159 additions and 48 deletions
+3
View File
@@ -5,4 +5,7 @@ dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
implementation 'org.springframework.boot:spring-boot-starter-webflux'
implementation 'com.azure:azure-messaging-eventhubs:5.15.0'
implementation 'com.azure:azure-storage-blob:12.22.1'
implementation 'com.azure:azure-storage-common:12.21.1'
}
@@ -0,0 +1,32 @@
package com.ktds.hi.store.config;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import com.azure.storage.blob.BlobServiceClient;
import com.azure.storage.blob.BlobServiceClientBuilder;
import lombok.extern.slf4j.Slf4j;
/**
* Azure Blob Storage 설정
*
* @author 하이오더 개발팀
* @version 1.0.0
*/
@Slf4j
// @Configuration
public class AzureStorageConfig {
@Value("${azure.storage.connection-string}")
private String connectionString;
@Bean
public BlobServiceClient blobServiceClient() {
log.info("Azure Blob Storage 클라이언트 초기화");
return new BlobServiceClientBuilder()
.connectionString(connectionString)
.buildClient();
}
}