We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 335d88b commit 4b0a92cCopy full SHA for 4b0a92c
src/main/resources/application-dev.yml
@@ -7,4 +7,8 @@ spring:
7
jpa:
8
open-in-view: false
9
hibernate:
10
- ddl-auto: create
+ 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
@@ -27,10 +27,6 @@ spring:
27
use_sql_comments: true
28
websocket:
29
enabled: true
30
- autoconfigure: # 로컬에서 실행할 때는 Redis와 Session 설정을 제외
31
- exclude:
32
- - org.springframework.boot.autoconfigure.data.redis.RedisAutoConfiguration
33
- - org.springframework.boot.autoconfigure.session.SessionAutoConfiguration
34
custom:
35
dev:
36
cookieDomain: localhost
0 commit comments