正则表达式能否在Spring Boot的application.yaml中用作键?

huangapple go评论98阅读模式
英文:

Can a regexp be used as a key in application.yaml in spring boot?

问题

是的,可以在YAML文件中使用正则表达式作为键,特别是在Spring Boot的application.yaml文件中可以使用。

英文:
kafka:
 topics:
   '.*testTopic': testValue

Is it possible to use regexp as a key in yaml file?
Especially I'm interested in spring boot application.yaml

答案1

得分: 1

原来Spring Boot会移除.*,即使它被放在单/双引号之间。因此,在application.yaml中不能将正则表达式作为键使用。

英文:

It turned out that spring boot remove .* even if it placed between single/double quotes. So, a regexp cannot be used as a key in application.yaml

huangapple
  • 本文由 发表于 2023年7月24日 16:26:20
  • 转载请务必保留本文链接:https://go.coder-hub.com/76752636.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定