gpt4 book ai didi

Maven本地缓存清理小工具的实现

转载 作者:qq735679552 更新时间:2022-09-28 22:32:09 24 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章Maven本地缓存清理小工具的实现由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

有个时候多人多team协作开发过程中,会存在临时修改的二方包,同样版本需要重新拉取的情况。发现大部分人包括自己长久以来也是采用最原始的方法,一层层找到对应的目录删除对应的文件。某天实在是受不了了,写了个小工具分享下,小代码解决小问题.

外部依赖:fastjson,commons-io,commons-lang3,不要嘲笑,有工具干嘛不用呢,非得造轮子吗.

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import com.alibaba.fastjson.json;
import org.apache.commons.io.fileutils;
import org.apache.commons.io.ioutils;
import org.apache.commons.lang3.stringutils;
import java.io.file;
import java.io.ioexception;
import java.nio.file.path;
import java.nio.file.paths;
import java.util.hashmap;
import java.util.map;
 
/**
  * @author tjw
  */
public class mavenlocalrepocleaner {
 
   /**
    * coordinatejson
    * {
    *   "groupid1":"artifactid1:version1,artifactid2:version2...",
    *   "groupid2":"artifactid:version,..."
    * }
    */
   public static void main(string[] args) {
     string coordinatejson= "{"
       + "\"top.xbynet.xxx\":\"\""
       + "}" ;
     map<string,string> coordinatemap=json.parseobject(coordinatejson,hashmap. class );
     path m2repo= paths.get(system.getproperty( "user.home" ), ".m2" , "repository" );
     coordinatemap.entryset().stream().foreach(v->{
       string groupid=v.getkey();
       groupid = groupid.replace( '.' , file.separatorchar);
       if (stringutils.isblank(v.getvalue())){
         path dir = paths.get(m2repo.tostring(), groupid);
         try {
           fileutils.deletedirectory(dir.tofile());
         } catch (ioexception e) {
           e.printstacktrace();
         }
       } else {
         string[] artfactidvers = v.getvalue().split( "," );
 
         for (string str : artfactidvers) {
           string ver = "" ;
           if (str.contains( ":" )) {
             ver = str.split( ":" )[ 1 ];
           }
           string artfactid = str.split( ":" )[ 0 ];
           path dir = paths.get(m2repo.tostring(), groupid, artfactid, ver);
           try {
             fileutils.deletedirectory(dir.tofile());
           } catch (ioexception e) {
             e.printstacktrace();
           }
         }
       }
     });
 
   }
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我.

原文链接:https://segmentfault.com/a/1190000015079332 。

最后此篇关于Maven本地缓存清理小工具的实现的文章就讲到这里了,如果你想了解更多关于Maven本地缓存清理小工具的实现的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com