我正在使用以下代码来获取所有引用类以将其激活:
String filter = "(component.factory=com.requestclasses.mypack)";
bundleContext = componentContext.getBundleContext();
ServiceReference[] references = bundleContext.getAllServiceReferences(ComponentFactory.class.getCanonicalName(), filter);
但作为参考,我没有得到所有的类。我不确定问题是代码还是AEM 5.6。
有什么建议么 ?
最佳答案
我通常不建议使用像这样的低级API查询服务引用。
您最好使用@Reference
注释检索这些引用,如下所示:
@Reference(
name = "componentFactories",
referenceInterface = ComponentFactory.class,
cardinality = ReferenceCardinality.OPTIONAL_MULTIPLE,
policy = ReferencePolicy.DYNAMIC
)
protected List<ComponentFactory> componentFactories = new ArrayList<ComponentFactory>();