欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

IDEA打包Springboot+maven项目

程序员文章站 2024-02-10 17:05:58
...
  1. 添加maven插件,指定主类
<plugins>
			<plugin>
				<groupId>org.springframework.boot</groupId>
				<artifactId>spring-boot-maven-plugin</artifactId>
				<configuration>
					<mainClass>com.lm.cms2.DemoApplication</mainClass>
				</configuration>
			</plugin>
		</plugins>
  1. 点击maven projects,再点击install
    IDEA打包Springboot+maven项目
  2. 打包成功
    IDEA打包Springboot+maven项目
    复制jar到服务器,java -jar xxx.jar 运行
    IDEA打包Springboot+maven项目