gpt4 book ai didi

spring-boot - 无法将 'server' 下的属性绑定(bind)到 org.springframework.boot.autoconfigure.web.ServerProperties :

转载 作者:行者123 更新时间:2023-12-02 17:04:54 24 4
gpt4 key购买 nike

Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2018-09-04 12:23:24.383 ERROR 12320 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter :

***************************
APPLICATION FAILED TO START
***************************

Description:

Failed to bind properties under 'server' to org.springframework.boot.autoconfigure.web.ServerProperties:

Property: server
Value:
Origin: class path resource [application.properties]:2:0
Reason: No converter found capable of converting from type [java.lang.String] to type [@org.springframework.boot.context.properties.ConfigurationProperties org.springframework.boot.autoconfigure.web.ServerProperties]

Action:

Update your application's configuration

我的 application.properties 文件如下所示:

server:
port: ${PORT:9191}

spring:

datasource:
url: jdbc:sqlserver://PC382682:1433;databaseName=imvenkat
username: imvenkat
password: imvenkat
driverClassName: com.microsoft.sqlserver.jdbc.SQLServerDriver

我知道这个问题与 Spring boot 有关,但我应该如何更改我的 application.properties 文件来解决这个问题?

最佳答案

问题是您在属性文件中使用 YAML 格式。正在逐行解析属性,因此属性解析器读取 server:,并且不知道如何直接绑定(bind)到 server,这会导致您看到的错误。

将文件重命名为 application.yml 或更改属性:

server.port=${PORT:9191}

spring.datasource.url=jdbc:sqlserver://PC382682:1433;databaseName=imvenkat
spring.datasource.username=imvenkat
spring.datasource.password=imvenkat
spring.datasource.driverClassName=com.microsoft.sqlserver.jdbc.SQLServerDriver

关于spring-boot - 无法将 'server' 下的属性绑定(bind)到 org.springframework.boot.autoconfigure.web.ServerProperties :,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52160556/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com