Spring Boot を使用して Spring Shell を起動することができました。
@SpringBootApplication
public class Main {
public static void main(String[] args) {
SpringApplication.run(Main.class);
}
}
すべての@ShellComponent
クラスが検出され、期待どおりにシェルを使用できます。
ここで、Spring Boot なしでシェルを実行したいと思います。次のようになると思います
Shell shell = context.getBean(Shell.class);
shell.run(...);
必要なすべての依存関係を自分で構成するには、どのようなアプローチを取る必要がありますか?
前もって感謝します!