SpringBoot 使用命令行参数

  • Post author:
  • Post category:其他





前 言

运行SpringBoot程序时。 我们可以通过在命令行传入SpringApplication配置参数。如

–server.port=8888

,

spring.profiles.active=dev

对项目进行灵活的配置和部署。




一、相关设置

  1. 通过

    SpringApplication.run(String… args)

    中传入main方法的相关参数实现对 application 配置的加载。
	/**
	 * Run the Spring application, creating and refreshing a new
	 * {@link ApplicationContext}.
	 * @param args the application arguments (usually passed from a Java main method)
	 * @return a running {@link ApplicationContext}
	 */

	public ConfigurableApplicationContext run(String... args) {}
  1. 如果想要关闭相关的配置。 可以通过

    SpringApplication.setAddCommandLineProperties(false)

    设置关闭命令行设置。



二、相关源码

调用关系:

SpringApplication.run()

->

prepareEnvironment()

->

configurePropertySources()

如果有

addCommandLineProperties && args.length > 0

则加载args中的相关配置。

		if (this.addCommandLineProperties && args.length > 0) {
			String name = CommandLinePropertySource.COMMAND_LINE_PROPERTY_SOURCE_NAME;
			if (sources.contains(name)) {
				PropertySource<?> source = sources.get(name);
				CompositePropertySource composite = new CompositePropertySource(name);
				composite.addPropertySource(
						new SimpleCommandLinePropertySource("springApplicationCommandLineArgs", args));
				composite.addPropertySource(source);
				sources.replace(name, composite);
			}
			else {
				sources.addFirst(new SimpleCommandLinePropertySource(args));
			}



版权声明:本文为cyrilney原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。