私は OSGi Equinox バンドルを開発していますが、ロギングを追加したいと考えています。ほとんどの場合、デバッグ目的で OSGi コンソールにリダイレクトされます。
Equinox にはいくつかのロギング サービス (LogService と ExtendedLogService) があるため、log4j の使用を破棄した後、LogService の使用方法を説明している次の記事を見つけました。
そこで、次のようなアクティベーターを思いつきました。
package org.example.servlet;
import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;
import org.osgi.framework.ServiceReference;
import org.osgi.service.log.LogService;
import org.osgi.util.tracker.ServiceTracker;
import org.eclipse.equinox.log.ExtendedLogService;
public class Activator implements BundleActivator {
private static BundleContext context;
private ServiceTracker logServiceTracker;
private LogService logService;
static BundleContext getContext() {
return context;
}
/*
* (non-Javadoc)
* @see org.osgi.framework.BundleActivator#start(org.osgi.framework.BundleContext)
*/
public void start(BundleContext bundleContext) throws Exception {
Activator.context = bundleContext;
// create a tracker and track the log service
logServiceTracker = new ServiceTracker(context, LogService.class.getName(), null);
logServiceTracker.open();
// grab the service
logService = (LogService) logServiceTracker.getService();
if(logService != null)
logService.log(LogService.LOG_INFO, "Yee ha, I'm logging!");
}
/*
* (non-Javadoc)
* @see org.osgi.framework.BundleActivator#stop(org.osgi.framework.BundleContext)
*/
public void stop(BundleContext bundleContext) throws Exception {
Activator.context = null;
}
まあ、ログに記録されたメッセージが OSGi コンソールに表示されることはありません...詳細情報を探していると、次のスレッドが見つかりました。
いくつかの回答は、ログイベントを実際にリッスンし(これは私の推測です)、ログに記録されたメッセージを何にでもリダイレクトする LogServiceReader オブジェクトを実装する必要があることを示唆しています(ファイル、コンソールなど...)
ここで私の質問は、このインターフェイスを実装する方法よりも、LogServiceReader の実装とアクティベーターで使用される LogService の間のバインディングを行う方法です...
ありがとう!アレックス