In my appllicaiton, I add SpringBoot devtools to improve the development speed.
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>
In its official document, it says
Developer tools are automatically disabled when running a fully packaged application. If your application is launched from java -jar or if it is started from a special classloader, then it is considered a “production application”.
The application is launched from java -jar in Production. But how is it lanched in Intellij idea while in development?