Skip to content

Commit 4b0a92c

Browse files
committed
rename : redis 설정 코드 이동 (#6)
1 parent 335d88b commit 4b0a92c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/main/resources/application-dev.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,8 @@ spring:
77
jpa:
88
open-in-view: false
99
hibernate:
10-
ddl-auto: create
10+
ddl-auto: create
11+
autoconfigure: # 로컬에서 실행할 때는 Redis와 Session 설정을 제외
12+
exclude:
13+
- org.springframework.boot.autoconfigure.data.redis.RedisAutoConfiguration
14+
- org.springframework.boot.autoconfigure.session.SessionAutoConfiguration

src/main/resources/application.yml

-4
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,6 @@ spring:
2727
use_sql_comments: true
2828
websocket:
2929
enabled: true
30-
autoconfigure: # 로컬에서 실행할 때는 Redis와 Session 설정을 제외
31-
exclude:
32-
- org.springframework.boot.autoconfigure.data.redis.RedisAutoConfiguration
33-
- org.springframework.boot.autoconfigure.session.SessionAutoConfiguration
3430
custom:
3531
dev:
3632
cookieDomain: localhost

0 commit comments

Comments
 (0)