栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

春季:如何在“个人资料”中进行AND?

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

春季:如何在“个人资料”中进行AND?

因为Spring没有开箱即用的AND功能。我建议以下策略:

当前

@Profile
注释具有条件注释
@Conditional(ProfileCondition.class)
。在
ProfileCondition.class
其中循环访问概要文件,并检查概要文件是否处于活动状态。同样,您可以创建自己的条件实现并限制注册Bean。例如

public class MyProfileCondition implements Condition {    @Override    public boolean matches(final ConditionContext context, final AnnotatedTypemetadata metadata) {        if (context.getEnvironment() != null) { final MultiValueMap<String, Object> attrs = metadata.getAllAnnotationAttributes(Profile.class.getName()); if (attrs != null) {     for (final Object value : attrs.get("value")) {         final String activeProfiles = context.getEnvironment().getProperty("spring.profiles.active");         for (final String profile : (String[]) value) {  if (!activeProfiles.contains(profile)) {      return false;  }         }     }     return true; }        }        return true;    }}

在您的课程中:

@Component@Profile("dev")@Conditional(value = { MyProfileCondition.class })public class DevDatasourceConfig

注意:我没有检查所有的极端情况(例如null,长度检查等)。但是,这个方向可能会有所帮助。



转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/454238.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号