Spring boot를 사용해 S3에 파일을 올리려고 했다. 따라서 S3에 대한 dependency를 build.gralde에 추가해야 한다.
인터넷에서 검색해본 결과
dependencies {
compile 'org.springframework.cloud:spring-cloud-starter-aws:2.2.1.RELEASE'
}
위 설정 코드를 build.gradle에 추가하면 된다고 한다. 하지만 해본 결과
compile 메서드를 읽지 못 한다.
그래서 구박사님께 여쭤봤고 나와 같은 고민을 하신 분의 질문을 찾았다.
구박사(구글)님께서 찾아주신 글
https://okky.kr/article/997902
gradle 7버전에서는 compile, testComplie 대신 implementataion, testImplementation을 사용해야 한다고 한다.
compile 대신 implementation을 사용하면
위 사진에서 확인할 수 있듯 적용이 잘 되었다!!
https://mvnrepository.com/artifact/org.springframework.cloud/spring-cloud-starter-aws/2.2.1.RELEASE
위 사이트를 참고하면 설정 정보 코드를 편하게 사용할 수 있다.