Skip to content
Advertisement

Unable to set Command Line profile in spring boot 2.2

Unable to run spring boot maven project with spring-profiles.

I’ve tried the following commands which all return the same error

mvn spring-boot:run -Dspring-boot.run.profiles=local

mvn spring-boot:run -Dspring.profiles.active=local

mvn spring-boot:run -Dspring-boot.profiles.active=local

I’m using SpringBoot 2.2.5 and Maven 3.6.3 on Java 11

JavaScript

Edit: Adding Full Debug Logging from suggested command

mvn spring-boot:run -Drun.jvmArguments="-Dspring.profiles.active=local" -X

I am getting practically the same logs with every alternative method of setting spring profiles. Each command returns a seperate Unknown lifecycle phase “$specifiedCommand” I am attaching the full Logs as follows:

JavaScript

Advertisement

Answer

I found this answer, it solved my issue. Answer by Tarmo on StackOverflow

Enclosing the spring-boot.run.profiles in “” fixed the issue for me

mvn spring-boot:run -D"spring-boot.run.profiles"=local

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement