SpringBoot禁用命令行参数
使用过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); } }
相关推荐
dxbjfu0 2020-09-11
bluecarrot 2020-08-19
zhaobig 2020-06-25
xiaohouye 2020-04-20
83520298 2020-04-16
rechanel 2020-02-28
站在高处眺望 2020-02-20
tydldd 2020-02-09
83520298 2020-01-26
83520298 2020-01-24
sunnyJam 2020-01-12
yuzhongdelei0 2019-12-31
tomson 2019-12-14
80304053 2019-12-10
qingshuoyisheng 2013-09-16
89961330 2019-11-16
invokerzhang 2019-11-10
xiejianming 2010-12-19