85520694 2019-06-28
使用过springboot的人应该都知道,我们可以通过命令行启动参数来修改springboot应用的一些属性值,比如启动端口等。但是,如果我们想要禁用掉这个功能呢,springboot其实也提供了对应的方法。之前在网上搜了很多发现大家都是抄来抄去,给出这样一行执行不了的代码就没了下文,
SpringApplication.setAddCommandLineProperties(false);
现在给出完整的代码:
package io.loong95.demo; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.web.servlet.support.SpringBootServletInitializer; @SpringBootApplication public class MyApplication extends SpringBootServletInitializer { public static void main(String[] args) { SpringApplication springApplication = new SpringApplication(MyApplication.class); // 禁用命令行参数 springApplication.setAddCommandLineProperties(false); springApplication.run(args); } }