コマンドライン引数を解析するSpringコマンドラインアプリケーションを作成している場合、それらをSpringに渡すにはどうすればよいですか? main()が最初にコマンドライン引数を解析し、次にSpringを開始するように構造化したいですか?それでも、解析された引数を保持するオブジェクトをどのようにSpringに渡すのでしょうか。
考えられる2つの可能性。
1)静的参照を設定します。 (静的変数は、通常は不快ですが、この場合、コマンドライン呼び出しは1つしか存在できないため、問題ありません)。
public class MyApp {
public static String[] ARGS;
public static void main(String[] args) {
ARGS = args;
// create context
}
}
次に、Springのコマンドライン引数を次のように参照できます。
<util:constant static-field="MyApp.ARGS"/>
別の方法として(静的変数に完全に反対している場合)、次のことができます。
2)プログラムでアプリケーションコンテキストに引数を追加します。
public class MyApp2 {
public static void main(String[] args) {
DefaultListableBeanFactory beanFactory = new DefaultListableBeanFactory();
// Define a bean and register it
BeanDefinition beanDefinition = BeanDefinitionBuilder.
rootBeanDefinition(Arrays.class, "asList")
.addConstructorArgValue(args).getBeanDefinition();
beanFactory.registerBeanDefinition("args", beanDefinition);
GenericApplicationContext cmdArgCxt = new GenericApplicationContext(beanFactory);
// Must call refresh to initialize context
cmdArgCxt.refresh();
// Create application context, passing command line context as parent
ApplicationContext mainContext = new ClassPathXmlApplicationContext(CONFIG_LOCATIONS, cmdArgCxt);
// See if it's in the context
System.out.println("Args: " + mainContext.getBean("args"));
}
private static String[] CONFIG_LOCATIONS = new String[] {
"applicationContext.xml"
};
}
コマンドライン引数の解析は、読者への課題として残されています。
http://github.com/sazzer/spring-cli にある私のSpring-CLIライブラリを見てください。これを行う1つの方法です。これは、Springコンテキストを自動的にロードし、Commons-CLIを使用してコマンドライン引数を自動的に解析し、それらをBeanに挿入するメインクラスを提供します。
オブジェクト配列を2番目のパラメーターとしてgetBean
に渡すこともできます。これは、コンストラクターまたはファクトリーへの引数として使用されます。
public static void main(String[] args) {
Mybean m = (Mybean)context.getBean("mybean", new Object[] {args});
}
Spring 3.1以降、他の回答で提案されているカスタムコードは必要ありません。 CommandLinePropertySource を確認してください。これは、CL引数をコンテキストに注入する自然な方法を提供します。
そして、あなたが幸運なSpring Boot開発者であれば、 SpringApplication が次のことを提供するという事実を利用して、コードを一歩前進させることができます:
デフォルトでは、クラスは次の手順を実行してbootstrapアプリケーションを作成します:
...
CommandLinePropertySourceを登録して、コマンドライン引数をSpringプロパティとして公開します。
また、Spring Bootプロパティ解決の注文に興味がある場合は、 このページ を参照してください。
次のクラスを考えてみましょう:
public class ExternalBeanReferneceFactoryBean
extends AbstractFactoryBean
implements BeanNameAware {
private static Map<String, Object> instances = new HashMap<String, Object>();
private String beanName;
/**
* @param instance the instance to set
*/
public static void setInstance(String beanName, Object instance) {
instances.put(beanName, instance);
}
@Override
protected Object createInstance()
throws Exception {
return instances.get(beanName);
}
@Override
public Class<?> getObjectType() {
return instances.get(beanName).getClass();
}
@Override
public void setBeanName(String name) {
this.beanName = name;
}
}
に加えて:
/**
* Starts the job server.
* @param args command line arguments
*/
public static void main(String[] args) {
// parse the command line
CommandLineParser parser = new GnuParser();
CommandLine cmdLine = null;
try {
cmdLine = parser.parse(OPTIONS, args);
} catch(ParseException pe) {
System.err.println("Error parsing command line: "+pe.getMessage());
new HelpFormatter().printHelp("command", OPTIONS);
return;
}
// create root beanFactory
DefaultListableBeanFactory beanFactory = new DefaultListableBeanFactory();
// register bean definition for the command line
ExternalBeanReferneceFactoryBean.setInstance("commandLine", cmdLine);
beanFactory.registerBeanDefinition("commandLine", BeanDefinitionBuilder
.rootBeanDefinition(ExternalBeanReferneceFactoryBean.class)
.getBeanDefinition());
// create application context
GenericApplicationContext rootAppContext = new GenericApplicationContext(beanFactory);
rootAppContext.refresh();
// create the application context
ApplicationContext appContext = new ClassPathXmlApplicationContext(new String[] {
"/commandlineapp/applicationContext.xml"
}, rootAppContext);
System.out.println(appContext.getBean("commandLine"));
}
Mainメソッドのストラップスプリングを起動する例を次に示します。渡されたパラメーターを通常どおりに取得し、Beanで呼び出す関数(deployer.execute()の場合)がそれらを文字列として、または適切と思われる任意の形式で取得するようにします。 。
public static void main(String[] args) throws IOException, ConfigurationException {
Deployer deployer = bootstrapSpring();
deployer.execute();
}
private static Deployer bootstrapSpring()
{
FileSystemXmlApplicationContext appContext = new FileSystemXmlApplicationContext("spring/deployerContext.xml");
Deployer deployer = (Deployer)appContext.getBean("deployer");
return deployer;
}
あなたが正確に何を達成しようとしているのかわかりません。おそらく、コマンドと引数がどのように見えるか、アプリケーションにどのような結果が期待できるかについて、いくつかの詳細を追加できます。
これはあなたが必要とするものではないと思いますが、他の読者には役立つかもしれません:Springは、二重ハイフンを使用してコマンドラインからプロパティを受け取ることをサポートしています(例:Java -jar app.jar --my.property="Property Value"
詳細については、このドキュメントをご覧ください。 https://docs.spring.io/spring-boot/docs/current/reference/html/boot-features-external-config.html#boot- features-external-config-command-line-args