我编写了一个包含com.liferay.portal.security.audit.AuditMessageProcessor服务实现的模块:
@Component(
configurationPid = "my.MyAuditMessageProcessorConfiguration",
immediate = true,
property = {
"eventTypes=*",
"service.ranking:Integer=100000"
},
service = AuditMessageProcessor.class
)
public class MyElasticsearchAuditMessageProcessor
implements AuditMessageProcessor {
@Override
public void process(AuditMessage auditMessage) {
_log.info("This never appears even after login/logout");
elasticsearch.send(auditMessage);
}
@Activate
@Modified
protected void activate(Map<String, Object> properties) {
_myAuditMessageProcessorConfiguration = ConfigurableUtil
.createConfigurable(
MyAuditMessageProcessorConfiguration.class, properties);
}
@Reference(unbind = "-")
protected my.Elasticsearch elasticsearch;
private static final Log _log =
LogFactoryUtil.getLog(MyAuditMessageProcessor.class);
private volatile MyAuditMessageProcessorConfiguration
_myAuditMessageProcessorConfiguration;
}
弹性搜索.java:
@Component(
immediate = true
)
public class Elasticsearch {
[...]
}
部署后,Gogo Shell 将我的模块视为未实现该服务,如下所示。我的模块实现的另外两个服务是可见的。
g! inspect capability service 548
myaudit_1.0.0 [548] provides:
---------------------------------
service; javax.servlet.Filter with properties:
servlet-filter-name = Audit Download Filter
url-pattern = /documents/*
servlet-context-name =
component.name = my.DownloadFilter
component.id = 2573
service.id = 7181
service.bundleid = 548
service.scope = bundle
Used by:
org.eclipse.osgi_3.10.200.v20150831-0856 [0]
service; com.liferay.portal.kernel.portlet.bridges.mvc.MVCRenderCommand with properties:
service.ranking = 100
mvc.command.name = /document_library/view_file_entry
javax.portlet.name = com_liferay_document_library_web_portlet_DLPortlet, com_liferay_document_library_web_portlet_DLAdminPortlet, com_liferay_document_library_web_portlet_IGDisplayPortlet
component.name = my.MyViewFileEntryMVCRenderCommand
component.id = 2576
service.id = 7182
service.bundleid = 548
service.scope = bundle
Used by:
org.eclipse.osgi_3.10.200.v20150831-0856 [0]
我究竟做错了什么?
有关信息,在我的模块的 jar 中OSGI-INF/my.MyAuditMessageProcessor.xml
存在:
<?xml version="1.0" encoding="UTF-8"?>
<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" name="my.MyAuditMessageProcessor" immediate="true" activate="activate" modified="activate" configuration-pid="my.MyAuditMessageProcessorConfiguration">
<implementation class="my.MyAuditMessageProcessor"/>
<service>
<provide interface="com.liferay.portal.security.audit.AuditMessageProcessor"/>
</service>
<property name="eventTypes" type="String" value="*"/>
<property name="service.ranking" type="Integer" value="100000"/>
</scr:component>