私はSpringアプリを開発中です。現在、アプリはメインクラスによって次のように実行されています。
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class Bootstrap {
public static void main(String[] args) {
new ClassPathXmlApplicationContext("spring-integration-demo.xml");
}
}
アプリをApache Karafに統合したいと考えています (または Apache Karaf をアプリに統合しますか?)。
どこから、どのように始めればよいかわかりません。誰かが基本的なアドバイスや関連ドキュメントへのポインタを提供できますか?