我们对项目中的Component有以下注释:
@Profile("!department")
这意味着当部门不是活动配置文件时运行此组件。 但是,你可以这样做:
@Profile("!department" || "datamigration" )
或
@Profile(["!department","datamigration"] )
基本上我想要一种能够说出来的方法,使用Component
if:
答案 0 :(得分:8)
这应该足够了
@Profile({"!department","datamigration"})