springboot获取当前服务ip_如何在Spring Boot中获取本地服务器主机和端口?

在Spring Boot应用中,当尝试通过@Value注解获取`server.address`和`server.port`属性时遇到异常。要获取应用监听的本地主机/IP和端口,可以使用`NetworkInterface`获取网络接口的IP地址,通过`EmbeddedServletContainerInitializedEvent`监听器获取端口。
摘要由CSDN通过智能技术生成

I'm starting up a Spring Boot application with mvn spring-boot:run.

One of my @Controllers needs information about the host and port the application is listening on, i.e. localhost:8080 (or 127.x.y.z:8080). Following the Spring Boot documentation, I use the server.address and server.port properties:

@Controller

public class MyController {

@Value("${server.address}")

private String serverAddress;

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

private String serverPort;

//...

}

When starting up the application with mvn spring-boot:run, I get the following exception:

org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'myController': Injection of autowired dependencies failed; nested exception is

org.springframework.beans.factory.BeanCreat

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值