美文网首页
springboot2.2.6.RELEASE chapter8

springboot2.2.6.RELEASE chapter8

作者: 淼哥1986 | 来源:发表于2020-04-04 00:14 被阅读0次
    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"]
       }
    }
    

    相关文章

      网友评论

          本文标题:springboot2.2.6.RELEASE chapter8

          本文链接:https://www.haomeiwen.com/subject/nbrrphtx.html