Idea对SpringBoot项目和web项目打包war或者jar流程

修改pom.xml文件,其中打包流程分为jar或者war两种形式:

com.ardo
springboot_server
0.0.1-SNAPSHOT
war

在Idea工具栏目中点选Edit Configurations,在弹出面板中点击最左侧上面的绿色加号,选择maven。

选中maven下面新建的条目,然后在右侧起一个名字(Name),以SpringBootPackage为例,这个后面在maven工具栏中会看到。Working directory中选择要打包的项目。Command Line中输入:clean package即可,点击保存。

然后在Idea右侧maven project工具栏目中可以看到Run Configurations下面多了一个SpringBootPackage的设置条目,然后双击即可打包,在控制台中可以看到打包信息。在工作空间项目的target下面即可看到springboot_server-0.0.1-SNAPSHOT.war。

打jar包也是同理。

参考:https://blog.csdn.net/Hzt_fighting_up/article/details/78174291

同理,在对web项目打包也是在maven project工具栏目中对应项目的Plugins->war->war:war双击执行即可,在工作空间项目的target下面即可看到对应的war包。

你可能感兴趣的:(技术总结,软件工具,Idea,SpringBoot)