Info | ||||
---|---|---|---|---|
| ||||
|
application.properties
- Docker Container화를 하면 Redis는 다른 Container에 존재하므로, host와 port를 명시해야 합니다.
Code Block | ||
---|---|---|
| ||
## Redis 설정을 추가 합니다. [root@workspace-vm my-reactive-link-shortener-sample-app]# cat src/main/resources/application.properties ## host 와 port를 추가 합니다. spring.redis.host=redis spring.redis.port=6379 |
...