springboot-启动时获取端口和项目名
# 背景
# 项目启动每次都要手动输url在浏览器中访问,就想能和vue项目一样启动能直接在控制台打印出url
# 踩坑
# 在项目中获取配置文件的方法为@Value,但是在启动类中无法使用,获取到的全都为null
# 使用
# Environment
public static void main(String[] args) {
ConfigurableApplicationContext context = SpringApplication.run(Application.class, args);
Environment environment = context.getBean(Environment.class);
System.out.println("访问链接:http://localhost:" +environment.getProperty("server.port")+environment.getProperty("server.servlet.context-path");
);
}
1
2
3
4
5
6
7
8
2
3
4
5
6
7
8
# 效果
编辑 (opens new window)
上次更新: 2024-11-06, 19:27:10