Spring boot 梳理 - 在bean中使用命令行参数-自动装配ApplicationArguments
Posted 手握太阳
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring boot 梳理 - 在bean中使用命令行参数-自动装配ApplicationArguments相关的知识,希望对你有一定的参考价值。
If you need to access the application arguments that were passed to SpringApplication.run(…?)
, you can inject a org.springframework.boot.ApplicationArguments
bean. The ApplicationArguments
interface provides access to both the raw String[]
arguments as well as parsed option
and non-option
arguments, as shown in the following example:
import org.springframework.boot.*; import org.springframework.beans.factory.annotation.*; import org.springframework.stereotype.*; @Component public class MyBean { @Autowired public MyBean(ApplicationArguments args) { boolean debug = args.containsOption("debug"); List<String> files = args.getNonOptionArgs(); // if run with "--debug logfile.txt" debug=true, files=["logfile.txt"] } }
以上是关于Spring boot 梳理 - 在bean中使用命令行参数-自动装配ApplicationArguments的主要内容,如果未能解决你的问题,请参考以下文章
如何在 Spring (Boot) 应用程序的代码中动态添加 bean?
如何使用 Spring Boot 在控制器中注入 bean?
如何在 Spring Boot 和 Spring WebFlux 中使用“功能 bean 定义 Kotlin DSL”?