春季启动规划环境地政司ConditionalOnExpression检查多个值特定属性

问题描述 投票:2回答:1

我创建@ConditionalOnExpression( “ '$ {property1}'!= '本地,登录调试' 和 '$ {property1}'!= '本地'”)我们有没有优化SPEL此

java spring spring-boot spring-el
1个回答
3
投票

你可能想用这个

@ConditionalOnExpression("!{'local', 'log-debug'}.contains('${property1}')")
© www.soinside.com 2019 - 2024. All rights reserved.