目录

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

# 效果

在这里插入图片描述

上次更新: 2024-11-06, 19:27:10
最近更新
01
java playwright爬虫
11-06
02
连接chrome调试
07-23
03
连接chrome调试
07-23
更多文章>