如何在IntelliJ中配置Spring Boot Run Configuratipon

时间:2019-08-08 00:10:12

标签: java spring-boot intellij-idea

我使用此命令来运行我的spring应用程序-java -jar -Dspring.profiles.active=native ddwa-services-app/target/ddwa-services-app-1.0-SNAPSHOT.jar,但是从IDE运行该应用程序时,我需要添加运行配置,以下是显示我添加内容的屏幕截图,但确实如此不适合我。

enter image description here

1 个答案:

答案 0 :(得分:1)

看看我正在使用的Spring Boot 2.0.4应用程序配置,我建议您尝试以下操作:

  • Spring概要文件的正确语法在程序参数

  • 中为--spring.profiles.active=yourprofile
  • 工作目录应设置为您的应用程序根文件夹。

我的屏幕快照中也没有突出显示单独的“活动配置文件”字段。

这是我的工作配置: enter image description here

我们还以以下方式运行我们的应用程序:

java -Dproperty=value -jar path/ourapp.jar --spring.profiles.active=ourprofile

实际上,活动配置文件配置的两种变体都是正确的-请参见Setting active profile and config location from command line in spring boot