如何向 Hybris OOTB 目录感知模型添加不可同步的属性?

How to add a non-synchronizable attribute to Hybris OOTB catalog aware model?

我想添加一个属性,比如 ProductModel 或任何 OOTB 组合类型,它是目录感知的。 条件是这个新属性不应该同步,例如。产品评论。 我们如何通过不在 BO 中手动编辑任何同步配置来实现这一点。

任何指点也会有所帮助。

你有2个选择:

-使用这个 impex

INSERT_UPDATE SyncAttributeDescriptorConfig; syncJob(code)[unique = true]; attributeDescriptor(enclosingType(code), qualifier)[unique = true]; ; includedInSync[default= true]

-或自定义 CatalogVersionSyncJob 和 return null when

acc.getDescriptor().getQualifier() = "your attribute's name"