________________初学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初学____探究_____可变对象 不可变对象理解