使用Spring Profiles的布尔表达式

时间:2017-11-17 13:36:37

标签: java spring

我们对项目中的Component有以下注释:

@Profile("!department")

这意味着当部门不是活动配置文件时运行此组件。 但是,你可以这样做:

@Profile("!department" || "datamigration" )

 @Profile(["!department","datamigration"] )

基本上我想要一种能够说出来的方法,使用Component if:

  • 个人资料不是部门
  • 个人资料是datamigration

1 个答案:

答案 0 :(得分:8)

这应该足够了

@Profile({"!department","datamigration"})