plugins {
id 'java'
id 'org.springframework.boot' version '4.0.0'
id 'io.spring.dependency-management' version '1.1.7'
}
implementation "io.awspring.cloud:spring-cloud-aws-starter-s3:3.1.1"
셋팅시
Correct the classpath of your application so that it contains compatible versions of the classes io.awspring.cloud.autoconfigure.s3.properties.S3Properties and org.springframework.boot.context.properties.PropertyMapper$Source
라는 에러가 나옵니다 s3랑 부트4.0이 버전이 맞지 않아 그렇다고 나오는거같아
implementation "io.awspring.cloud:spring-cloud-aws-starter-s3:4.0.0-M1"
이걸로 적용하여 실행하여도 에러가 나오는 상황입니다 ㅠㅠ
어떻게 하는게 맞을까요?