이미지 업로드 (1) 썸네일형 리스트형 Spring과 AWS S3 연동 파일 업로드 후기 구글링을 하면서 개발을 했는데 AWS 인증하는 방식이 과거방식과 최신방식 2개가 있는 것 같았다. 과거 방식은 곧 deprecated된다고 해서 최신 방식으로 시도를 했는데 이유는 못 찾았는데 결국 잘 안되서 과거 방식으로 구현했다. 참고로 최신방식으로 구현한 코드는 아래와 같은데 왜 안되는지 잘 모르겠다..ㅜㅜ public AWSs3(){ try{ BasicAWSCredentials creds = new BasicAWSCredentials(accessKey, secretKey); this.s3Client = AmazonS3ClientBuilder .standard() .withCredentials(new AWSStaticCredentialsProvider(creds)) .withRegion("ap.. 이전 1 다음