Springboot S3 연동 및 이미지 업로드(3) - 오류

seongcheollee·2023년 12월 19일
0

[error] Failed to connect to service endpoint

com.amazonaws.SdkClientException: Failed to connect to service endpoint:
Caused by: java.net.SocketTimeoutException: connect timed out

aws sdk 에러 spring-cloud-starter-aws 의존성 주입시 로컬환경은 aws환경이 아니기때문에 나는 에러.

해결

@SpringBootApplication(
        exclude = {
                org.springframework.cloud.aws.autoconfigure.context.ContextInstanceDataAutoConfiguration.class,
                org.springframework.cloud.aws.autoconfigure.context.ContextStackAutoConfiguration.class,
                org.springframework.cloud.aws.autoconfigure.context.ContextRegionProviderAutoConfiguration.class
        }
)

@SpringBootApplication에 적용

[error] AmazonS3Exception 400

public Access 차단 해제

0개의 댓글