Description: Failed to bind properties under 'server.address' to java.net.InetAddress: Property: server.address Value: "9999" Origin: class path resource [application.yml] - 2:12 Reason: org.springframework.core.convert.ConverterNotFoundException: No converter found capable of converting from type [java.lang.Integer] to type [java.net.InetAddress] Action: Update your application's configuration 解决
时间: 2024-04-09 12:31:14 浏览: 345
Android 中出现java.net.BindException: bind failed: EADDRINUSE 问题解决办法
这个问题是由于在配置文件中将一个整数类型的值赋给了`server.address`属性,而Spring Boot无法将整数转换为`InetAddress`类型导致的。要解决这个问题,你可以按照以下步骤进行操作:
1. 打开`application.yml`配置文件。
2. 找到`server.address`属性所在的行(在错误信息中是第2行的第12列)。
3. 将该行的值改为一个有效的IP地址字符串,例如`localhost`或者`127.0.0.1`。
4. 保存文件并重新启动应用程序。
这样应该能够解决这个问题。如果你仍然遇到困难,请提供更多的信息,我会尽力帮助你解决。
阅读全文