________________初学springboot5

Posted qiqisx

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了________________初学springboot5相关的知识,希望对你有一定的参考价值。

@SpringBootApplication

public class App {

public static void main(String[] args) {

ConfigurableApplicationContext context=SpringApplication.run(App.class, args);

//方法1: 直接使用AppicationContext.getEnvironment System.out.println(context.getEnvironment().getProperty("local.ip"));

context.getBean(UserConfig.class).show();

context.close();

}

}

@Component

public class UserConfig {

//方法3:注解获取 

@Value("${local.port}")

private String localPort;

//方法2: 在配置类中注入Environment 使用.getProperties调用 

@Autowired

private Environment env;

public  void show() {

System.out.println("local.ip:"+env.getProperty("local.ip"));

System.out.println("local.port:"+localPort);

}

}

 

以上是关于________________初学springboot5的主要内容,如果未能解决你的问题,请参考以下文章

Python初学____探究_____可变对象 不可变对象理解

请教大神,简明python,__init__,self,到底啥含义,初学者看不懂。。

python初学之魔法方法1

Python初学者错误

git相关2

我试图检测某个被按下的键(Python)