HttpServiceを使ったbundleの作成メモ。 「Equinoxを試す」で作ったhello bundleを元に拡張してみる。 1. BundleActivatorの実装。start時にHttpServiceの参照をもらってHttpServiceを取得する。HttpContextを作成し、リソースを登録。 package com.yoshitan.hello; import org.osgi.framework.BundleActivator; import org.osgi.framework.BundleContext; import org.osgi.framework.ServiceReference; import org.osgi.service.http.HttpService; import org.osgi.service.http.HttpContext; imp