eclipse实现JavaWeb应用增量打包

很多情况下,项目是不允许全量发布的,所以你得把有做修改的文件一个个挑出来,如果有成千上百的文件,你是不是要头大了? 以下方法应该可以让你得到解救!前提是你是用装有svn plugin的eclipse上做开发。

第一步,用svn生成项目的补丁文件。

eclipse实现JavaWeb应用增量打包

选中你需要增量升级的文件,点击完成。

eclipse实现JavaWeb应用增量打包

运行如下代码

  1. package verysoft.freepath;
  2. import java.io.BufferedInputStream;
  3. import java.io.BufferedOutputStream;
  4. import java.io.BufferedReader;
  5. import java.io.File;
  6. import java.io.FileInputStream;
  7. import java.io.FileOutputStream;
  8. import java.io.IOException;
  9. import java.io.InputStreamReader;
  10. import java.util.ArrayList;
  11. import java.util.List;
  12. public class FreePatchUtil {
  13. public static String patchFile="D:/patch.txt";//补丁文件,由eclipse svn plugin生成
  14. public static String projectPath="D:/workspace/FordClubJeeCms";//项目文件夹路径
  15. public static String webContent="WebContent";//web应用文件夹名
  16. public static String classPath="D:/workspace/FordClubJeeCms/build";//class存放路径
  17. public static String desPath="C:/Users/xuwen/Desktop/update_pkg";//补丁文件包存放路径
  18. public static String version="20140711";//补丁版本
  19. /**
  20. * @param args
  21. * @throws Exception
  22. */
  23. public static void main(String[] args) throws Exception {
  24. copyFiles(getPatchFileList());
  25. }
  26. public static List<String> getPatchFileList() throws Exception{
  27. List<String> fileList=new ArrayList<String>();
  28. FileInputStream f = new FileInputStream(patchFile);
  29. BufferedReader dr=new BufferedReader(new InputStreamReader(f,"utf-8"));
  30. String line;
  31. while((line=dr.readLine())!=null){
  32. if(line.indexOf("Index:")!=-1){
  33. line=line.replaceAll(" ","");
  34. line=line.substring(line.indexOf(":")+1,line.length());
  35. fileList.add(line);
  36. }
  37. }
  38. return fileList;
  39. }
  40. public static void copyFiles(List<String> list){
  41. for(String fullFileName:list){
  42. if(fullFileName.indexOf("src/")!=-1){//对源文件目录下的文件处理
  43. String fileName=fullFileName.replace("src","");
  44. fullFileName=classPath+fileName;
  45. if(fileName.endsWith(".java")){
  46. fileName=fileName.replace(".java",".class");
  47. fullFileName=fullFileName.replace(".java",".class");
  48. }
  49. String tempDesPath=fileName.substring(0,fileName.lastIndexOf("/"));
  50. String desFilePathStr=desPath+"/"+version+"/WEB-INF/classes"+tempDesPath;
  51. String desFileNameStr=desPath+"/"+version+"/WEB-INF/classes"+fileName;
  52. File desFilePath=new File(desFilePathStr);
  53. if(!desFilePath.exists()){
  54. desFilePath.mkdirs();
  55. }
  56. copyFile(fullFileName, desFileNameStr);
  57. System.out.println(fullFileName+"复制完成");
  58. }else{//对普通目录的处理
  59. String desFileName=fullFileName.replaceAll(webContent,"");
  60. fullFileName=projectPath+"/"+fullFileName;//将要复制的文件全路径
  61. String fullDesFileNameStr=desPath+"/"+version+desFileName;
  62. String desFilePathStr=fullDesFileNameStr.substring(0,fullDesFileNameStr.lastIndexOf("/"));
  63. File desFilePath=new File(desFilePathStr);
  64. if(!desFilePath.exists()){
  65. desFilePath.mkdirs();
  66. }
  67. copyFile(fullFileName, fullDesFileNameStr);
  68. System.out.println(fullDesFileNameStr+"复制完成");
  69. }
  70. }
  71. }
  72. private static void copyFile(String sourceFileNameStr, String desFileNameStr) {
  73. File srcFile=new File(sourceFileNameStr);
  74. File desFile=new File(desFileNameStr);
  75. try {
  76. copyFile(srcFile, desFile);
  77. } catch (IOException e) {
  78. e.printStackTrace();
  79. }
  80. }
  81. public static void copyFile(File sourceFile, File targetFile) throws IOException {
  82. BufferedInputStream inBuff = null;
  83. BufferedOutputStream outBuff = null;
  84. try {
  85. // 新建文件输入流并对它进行缓冲
  86. inBuff = new BufferedInputStream(new FileInputStream(sourceFile));
  87. // 新建文件输出流并对它进行缓冲
  88. outBuff = new BufferedOutputStream(new FileOutputStream(targetFile));
  89. // 缓冲数组
  90. byte[] b = new byte[1024 * 5];
  91. int len;
  92. while ((len = inBuff.read(b)) != -1) {
  93. outBuff.write(b, 0, len);
  94. }
  95. // 刷新此缓冲的输出流
  96. outBuff.flush();
  97. } finally {
  98. // 关闭流
  99. if (inBuff != null)
  100. inBuff.close();
  101. if (outBuff != null)
  102. outBuff.close();
  103. }
  104. }
  105. }

注意,以下部份请按照实际情况填写

  1. public static String patchFile="D:/patch.txt";//补丁文件,由eclipse svn plugin生成
  2. public static String projectPath="D:/workspace/FordClubJeeCms";
  3. public static String webContent="WebContent";//web应用文件夹名
  4. public static String classPath="D:/workspace/FordClubJeeCms/build";//class存放路径
  5. public static String desPath="C:/Users/xuwen/Desktop/update_pkg";//补丁文件包存放路径
  6. public static String version="20140711";//补丁版本

好了,运行后得到结果

eclipse实现JavaWeb应用增量打包

如果有多个人都修改了代码,那么每个人在提交代码之前先按第一步生成补丁文件再提交。当所有人都提交代码后,在一台电脑上更新所有代码,再在这台电脑上用以上代码运行所有人生成的补丁文件即可。

上一篇:Unity3d 怪物死亡燃烧掉效果


下一篇:BZOJ3188: [Coci 2011]Upit