英文:
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
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论