亦余心之所善兮,虽九死其犹未悔。这篇文章主要讲述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 梳理 - SpringApplication
- 如何精准的找到社交类APP软件开发服务商
- Delphi使用逍遥安卓模拟器
- 用H5开发微信还是开发APP()
- 使用什么进行app开发
- ORM(Object Relational Mapping)
- springmvc中@RequestMapping的使用
- Android监听view的attached或detached状态
- iscroll在安卓高版本(6.0以上)某些机型上滑动卡顿问题的解决方法