我是靠谱客的博主 美丽冰淇淋,这篇文章主要介绍spring boot 通过@value拿不到yml中的自定义属性,现在分享给大家,希望可以做个参考。

刚开始只能拿到spring之类的属性,自定义的vivo-push-type就是拿不到。折腾了半天,最后发现是语法没写对(如果你也拿不到的话,通常都是个原因),yml这玩意儿对格式要求非常严格,多写一个缩进就会发生质的变化。 因为属性之间的层级关系,就是通过缩进来实现的。

按照下面这样配置,就能在使用多环境配置的情况下,拿到自定义属性vivo-push-type

application.yml

复制代码
1
2
3
4
spring: profiles: active: dev

这是application-dev.yml

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
server: port: 8081 servlet: context-path: /dah-push-platform spring: profiles: dev datasource: url: jdbc:mysql://127.0.0.1:3306/xxx username: xxx password: xxx security: user: name: admin password: tspt mvc: view: prefix: /WEB-INF/views/ suffix: .jsp level: debug thymeleaf: cache: false management: security: enabled: false logging: level: com: ciotea: debug file: path: /usr/local/logs/dah-push-platform mvc: static-path-pattern: /** resources: static-locations: classpath:/META-INF/resources/,classpath:/resources/, classpath:/static/, classpath:/public/,classpath:/webapp/,classpath:/webapp/WEB-INF/,classpath:/webapp/WEB-INF/views/ #vivo推送模式 0正式推送;1测试推送 vivo-push-type: 1```

最后

以上就是美丽冰淇淋最近收集整理的关于spring boot 通过@value拿不到yml中的自定义属性的全部内容,更多相关spring内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(53)

评论列表共有 0 条评论

立即
投稿
返回
顶部