使用過springboot的人應該都知道,咱們能夠經過命令行啓動參數來修改springboot應用的一些屬性值,好比啓動端口等。可是,若是咱們想要禁用掉這個功能呢,springboot其實也提供了對應的方法。以前在網上搜了不少發現你們都是抄來抄去,給出這樣一行執行不了的代碼就沒了下文,java
SpringApplication.setAddCommandLineProperties(false);
如今給出完整的代碼:web
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); } }