I can't activate the Spring download profile in IntelliJ IDEA.
Java 17
IntelliJ IDEA 2021.3 Beta (Ultimate Edition)
<spring.version>5.3.9</spring.version>
I'm coming in Run | Edit Configurations... and in VM options I prescribe
-Dspring.profiles.active=development
And when you start the application from the IDE, the following error crashes:
Error: Could not find or load main class VM
Caused by: java.lang.ClassNotFoundException: VM
At the same time, I managed to launch it manually with this option:
java -jar main-ms-1.2-SNAPSHOT.jar --spring.profiles.active=development
What else do I need to register in the IDE that I missed? I cleaned the cache. Rechecked all the settings. Nothing helps. I don't understand what the problem might be. At the same time, other project developers do not have this problem. With the -Spring.profiles.active=development flag, the application is launched in IDEA
profile in Pom.xml This is a shared file Pom.xml, which is at the root of the entire project on microservices.
<profiles>
<profile>
<id>development</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<build.profile.id>development</build.profile.id>
<maven.file.path>file:${project.basedir}/../../../maven</maven.file.path>
<releases.maven.repository.url>${maven.file.path}/releases</releases.maven.repository.url>
<snapshots.maven.repository.url>${maven.file.path}/snapshots
</snapshots.maven.repository.url>
<docker.registry.domain>localhost:5000</docker.registry.domain>
<docker.registry.url>http://${docker.registry.domain}</docker.registry.url>
</properties>
</profile>
</profiles>
And this is the file pom.xml the microservice I'm trying to run.
<dependencies>
<dependency>
<groupId>com.asvoip.ump</groupId>
<artifactId>ump-it-lib</artifactId>
<version>1.1-SNAPSHOT</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.asvoip.ump</groupId>
<artifactId>ump-currencymanager-api</artifactId>
<version>1.2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.asvoip.ump</groupId>
<artifactId>ump-sqldbclient-lib</artifactId>
<version>1.2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.asvoip.ump</groupId>
<artifactId>ump-restapiserver-lib</artifactId>
<version>1.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.asvoip.ump</groupId>
<artifactId>ump-documentation-lib</artifactId>
<version>1.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-web -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-config</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-sleuth</artifactId>
</dependency>
<dependency>
<groupId>de.codecentric</groupId>
<artifactId>spring-boot-admin-starter-client</artifactId>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>co.elastic.logging</groupId>
<artifactId>logback-ecs-encoder</artifactId>
</dependency>
<!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-xml</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>io.fabric8</groupId>
<artifactId>docker-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
File application.yaml
spring.config.activate.on-profile: development