일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- redis
- 로그인
- Spring
- @Value
- 반환
- 코드워즈
- 플라이웨이트
- springboot
- 디자인 패턴
- @RequestBody
- JWT
- 헬스체크
- property
- enum
- 코딩테스트
- RequestBody
- Docker
- ResponseDto
- yml
- response
- Boot
- RequestParam
- Request
- Codewars
- 프로퍼티
- actuator
- DTO
- @RequestParam
- Security
- 파라미터
- Today
- Total
목록redis (2)
있을 유, 참 진
Dependency 추가 & Yaml 파일 설정 💡 password를 설정했다면 yml 파일에 password 또한 설정해준다. // Redis implementation 'org.springframework.boot:spring-boot-starter-data-redis' #Redis 설정 spring: redis: lettuce: pool: max-active: 5 max-idle: 5 min-idle: 2 host: localhost port: 6379 password: 1234 Redis Configuration 설정 @Configuration @EnableRedisRepositories public class RedisConfig { @Value("${spring.redis.host}") pri..
Redis 이미지 받아오기 💡 docker pull redis를 통해서 redis를 받아온다. redis의 가장 최근 버전을 받아온다. PS C:\Users\USER-PC> docker pull redis Using default tag: latest latest: Pulling from library/redis 26c5c85e47da: Pull complete 39f79586dcf2: Pull complete 79c71d0520e5: Pull complete 60e988668ca1: Pull complete 873c3fc9fdc6: Pull complete 50ce7f9bf183: Pull complete Digest: sha256:f50031a49f41e493087fb95f96fdb3523bb25dc..