gpt4 book ai didi

java - 在 Spring Boot 命令行中传递多个参数

转载 作者:行者123 更新时间:2023-12-01 17:15:57 24 4
gpt4 key购买 nike

我需要将多个参数传递给 Maven 命令行来运行 Spring Boot 应用程序。这就是我在 Spring Boot 中传递命令行参数的方式。我使用的是 Spring Boot 2.2.6 版本

mvn spring-boot:run -Dspring-boot.run.arguments="--server.port=8999,--spring.application.instance_id=dhn"

但是我收到以下错误

nested exception is org.springframework.boot.context.properties.bind.BindException: Failed to bind properties under 'server.port' to java.lang.Integer

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

Description:

Failed to bind properties under 'server.port' to java.lang.Integer:

Property: server.port
Value: 8999,--spring.application.instance_id=dhn
Origin: "server.port" from property source "commandLineArgs"
Reason: failed to convert java.lang.String to java.lang.Integer

Action:

Update your application's configuration

似乎参数没有正确解析

最佳答案

, 分隔符似乎不起作用。虽然我已经在教程中看到过这种风格。

有效的方法是使用空格作为分隔符:

mvn spring-boot:run -Dspring-boot.run.arguments="--server.port=8999 --spring.application.instance_id=dhn"

关于java - 在 Spring Boot 命令行中传递多个参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61388489/

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