Pom.xml Modify Package Type Pom to war
<artifactId>Test02</artifactId> <packaging>war</packaging> <!--maven Package application-- > <build> <plugins> <plugin> <groupid>org.springframework.boot</ groupid> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins ></build>
Removing the built-in TOMCA
<!--configured for external tomcat configuration- <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-tomcat</artifactId> <scope>provided</scope> </dependency>
Then click on the Maven panel on the right of idea to clean and then double-click the package
Directory appears target folder after package success
Copy the marked war package and I copied it to the desktop. Then open cmd to run the war package
1. Go to the file location where the war package is located
2. Using the command line: Java-jar "War package name" Enter run
After success, you want to exit the command line, press CTRL + C
Knock it off ....
Springboot idea maven packs the war and runs the war package