Intellij idea 17 打包发布maven项目 全记录

尊重原创,原文链接


网上关于idea打包的博客比较乱,总结靠谱的打包流程如下。

一. 普通jar包

1.打开项目File->Project Structure 
Intellij idea 17 打包发布maven项目 全记录_第1张图片

2.Intellij idea 17 打包发布maven项目 全记录_第2张图片

3. 
Intellij idea 17 打包发布maven项目 全记录_第3张图片

4. 
Intellij idea 17 打包发布maven项目 全记录_第4张图片

5. 
Intellij idea 17 打包发布maven项目 全记录_第5张图片

6. 
Intellij idea 17 打包发布maven项目 全记录_第6张图片

7.打包后目录结构如下: 
Intellij idea 17 打包发布maven项目 全记录_第7张图片

8.windows下测试jar包: 
Intellij idea 17 打包发布maven项目 全记录_第8张图片

2.Maven War包

1.注意:需要在pom.xml中注明打包方式为war 
Intellij idea 17 打包发布maven项目 全记录_第9张图片

2.点击界面最右侧的选项:Maven Projects -> 双击package 
Intellij idea 17 打包发布maven项目 全记录_第10张图片

如果没有该选项,可以在view中调出 
Intellij idea 17 打包发布maven项目 全记录_第11张图片

3.打包成功 
Intellij idea 17 打包发布maven项目 全记录_第12张图片

4.war包存在目录结构 
Intellij idea 17 打包发布maven项目 全记录_第13张图片

5.windows下测试 
Intellij idea 17 打包发布maven项目 全记录_第14张图片

6.测试成功!(该war包内含tomcat)

3.本人maven项目打包

我是在pom.xml中加入一个插件来打包,如下:

 <plugin>
   <artifactId>maven-assembly-pluginartifactId>
   <configuration>
       <descriptorRefs>
           <descriptorRef>jar-with-dependenciesdescriptorRef>
       descriptorRefs>
       <archive>
           <manifest>
               <mainClass>com.yj.spark.TestSparkmainClass>
           manifest>
       archive>
   configuration>
   <executions>
       <execution>
           <id>make-assemblyid>
           <phase>packagephase>
           <goals>
               <goal>singlegoal>
           goals>
       execution>
   executions>
plugin>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22

这种方式是通过maven命令来打包的: 
Intellij idea 17 打包发布maven项目 全记录_第15张图片

打包后生成目录如下: 
Intellij idea 17 打包发布maven项目 全记录_第16张图片 
见名知意,其中 spark-1.0.jar 只有代码,无依赖,而 spark-1.0-jar-with-dependencies.jar则包含所有jar包

未完待续……

你可能感兴趣的:(IDE/优化&使用)