springboot 启动时 获取端口和项目名
背景项目启动每次都要手动输url在浏览器中访问,就想能和vue项目一样启动能直接在控制台打印出url踩坑在项目中获取配置文件的方法为@Value,但是在启动类中无法使用,获取到的全都为null使用Environmentpublic static void main(String[] args) {ConfigurableApplicationContext c...
·
背景
项目启动每次都要手动输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");
);
}
效果
更多推荐
已为社区贡献3条内容
所有评论(0)