Skip to content

Commit

Permalink
주입되는 host 확인 (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
peeerr committed Apr 4, 2024
1 parent aac42c0 commit 40b7789
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/main/java/com/peeerr/climbing/config/RedisConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,17 @@ public class RedisConfig {

@Bean
public RedisConnectionFactory redisConnectionFactory() {
System.out.println();
System.out.println();
System.out.println();
System.out.println("=============================");
System.out.println("host = " + host);
System.out.println("port = " + port);
System.out.println("=============================");
System.out.println();
System.out.println();
System.out.println();

return new LettuceConnectionFactory(host, port);
}

Expand Down

0 comments on commit 40b7789

Please sign in to comment.