[Spring Boot] Redis (Jedis)를 이용한 간단한 API 제작
1. Redis Redis 서버가 설치되어 있다는 전제하에 진행된다. [참고] Database - Practice - AWS EC2 인스턴스 Redis 설치 2. Redis 설정 1) build.gradle compile group: 'redis.clients', name: 'jedis' compile group: 'org.apache.commons', name: 'commons-pool2', version: '2.6.2' compile ('org.springframework.boot:spring-boot-starter-data-redis') { exclude group: 'io.lettuce', module: 'lettuce-core' } ※ Spring Boot 2.0 이상에서는 Lettuce가 기본..
2020.10.17