File tree 2 files changed +11
-1
lines changed
d02s02e01-properties-files/src/main/resources
d02s02e02-yaml-files/src/main/resources
2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -7,4 +7,8 @@ logging.level.org.springframework=warn
7
7
logging.pattern.console =%clr([%date{HH:mm:ss.SSS}]){faint} %clr(%2p) %clr(%-40.40logger{36}){cyan} %m%n%wex
8
8
9
9
# defining a custom property
10
- connection.timeout =5000
10
+ connection.timeout =5000
11
+
12
+ spring.autoconfigure.exclude =org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration,\
13
+ org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration,\
14
+ org.springframework.boot.autoconfigure.data.elasticsearch.ElasticsearchAutoConfiguration
Original file line number Diff line number Diff line change 3
3
application :
4
4
name : spring-boot-yaml-usage-demo
5
5
6
+ autoconfigure :
7
+ exclude :
8
+ - org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration
9
+ - org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration
10
+ - org.springframework.boot.autoconfigure.data.elasticsearch.ElasticsearchAutoConfiguration
11
+
6
12
# logging settings
7
13
logging :
8
14
level :
You can’t perform that action at this time.
0 commit comments