手动通过Lucene判断该pom文件中jar是否存在,子依赖没判断
package lucne.test; import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map; import org.apache.lucene.analysis.standard.StandardAnalyzer;
import org.apache.lucene.document.Document;
import org.apache.lucene.document.StringField;
import org.apache.lucene.document.Field.Store;
import org.apache.lucene.index.DirectoryReader;
import org.apache.lucene.index.IndexReader;
import org.apache.lucene.index.IndexWriter;
import org.apache.lucene.index.IndexWriterConfig;
import org.apache.lucene.index.Term;
import org.apache.lucene.index.IndexWriterConfig.OpenMode;
import org.apache.lucene.queryparser.classic.ParseException;
import org.apache.lucene.queryparser.classic.QueryParser;
import org.apache.lucene.search.IndexSearcher;
import org.apache.lucene.search.Query;
import org.apache.lucene.search.ScoreDoc;
import org.apache.lucene.search.TermQuery;
import org.apache.lucene.search.TopDocs;
import org.apache.lucene.store.Directory;
import org.apache.lucene.store.FSDirectory;
import org.apache.lucene.util.Version;
import org.dom4j.DocumentException;
import org.dom4j.Element;
import org.dom4j.io.SAXReader;
import org.junit.Test; public class MavenPomUtil { //待索引文件路径
private static String indexFilePath;
//索引存储路径
public static String dirpath;
private static List<File> files = new ArrayList<File>(); static{
try {
indexFilePath="F:\\Repositorys\\MavenLib";
dirpath=new File("").getCanonicalPath()+"\\Index\\Directory";
} catch (IOException e) {
e.printStackTrace();
};
} @Test
public void search() throws IOException{
Map<String, Boolean> errorMap=parserJarPomResult("F:\\workce\\eclispe\\newplaterom\\pom.xml");
System.out.println(errorMap);
} @Test
public void initCreateIndex(){
checkFile(new File(indexFilePath));
createMavenLibIndex(files);
} /**
* 返回结果
* */
public Map<String, Boolean> parserJarPomResult(String pompath){
return parserJarPomError(parserXmlFile(pompath));
} /**
* 解析pom文件后,将结果集验证是否有误差
* */
private Map<String, Boolean> parserJarPomError(List<String> jars){
Map<String, Boolean> errorMap = new HashMap<String, Boolean>();
if(jars!=null&&!jars.isEmpty()){
for(String jarname:jars){
boolean bo = searchMavenLibPathBoolean(jarname);
if(!bo){
errorMap.put(jarname, bo);
}
}
}
return errorMap;
} /**
* 解析pom文件
* */
@SuppressWarnings("unchecked")
private List<String> parserXmlFile(String pomFilePath){
File pom = new File(pomFilePath);
List<String> jarList = new ArrayList<String>();
try {
SAXReader xmlreader = new SAXReader();
org.dom4j.Document doc = xmlreader.read(pom);
Element el = doc.getRootElement();
Element dependencies = el.element("dependencies");
Map<String, String> propertiesMap = null;
Element properties = el.element("properties");
if(properties!=null){
propertiesMap = new HashMap<String, String>();
Iterator<Element> propertiesIt = properties.elementIterator();
while(propertiesIt.hasNext()){
Element propertieChildren = propertiesIt.next();
String name = propertieChildren.getName();
String text = propertieChildren.getText();
propertiesMap.put("\\$\\{"+name+"\\}", text);
}
}
Iterator<Element> dependenciesIt = dependencies.elementIterator();
while(dependenciesIt.hasNext()){
Element dependency=dependenciesIt.next();
Element artifactId=dependency.element("artifactId");
Element version=dependency.element("version");
Element scope=dependency.element("scope");
Element classifier=dependency.element("classifier");
String artifactIdValue = artifactId.getText();
String versionValue = version.getText();
String jarFileName="";
if(scope==null||!scope.getText().equals("system")){
jarFileName=artifactIdValue.concat("-").concat(versionValue);
if(classifier!=null){
String classifiervalue=classifier.getText();
jarFileName=jarFileName.concat("-").concat(classifiervalue);
}
jarFileName=jarFileName.concat(".jar");
}else if(scope.getText().equals("system")){
Element systemPath=dependency.element("systemPath");
String systemPathValue=systemPath.getText();
int lastindex=systemPathValue.lastIndexOf("/");
jarFileName=systemPathValue.substring(lastindex+1, systemPathValue.length());
}
if(propertiesMap!=null){
for(String key:propertiesMap.keySet()){
jarFileName=jarFileName.replaceAll(key, propertiesMap.get(key));
}
}
jarList.add(jarFileName);
}
} catch (DocumentException e) {
e.printStackTrace();
}
return jarList;
} /**
* 查询索引是否存在
* @return boolean
* */
public static boolean searchMavenLibPathBoolean(String jarFilenName){
boolean flag=false;
try {
Directory dir = FSDirectory.open(new File(MavenPomUtil.dirpath));
IndexReader reader = DirectoryReader.open(dir);
IndexSearcher searcher = new IndexSearcher(reader);
/* QueryParser parser = new QueryParser(Version.LUCENE_40, "filename", new StandardAnalyzer(Version.LUCENE_40));
Query query = parser.parse(jarFilenName);*/
Term term = new Term("filename",jarFilenName);
TermQuery query = new TermQuery(term);
TopDocs docs = searcher.search(query, 2);
if(docs.totalHits>0){
flag=true;
}
reader.close();
} catch (IOException e) {
e.printStackTrace();
}
return flag;
} /**
* 查询jar存在路径
* @return Map
* */
public static Map<String, List<String>> searchMavenLibPath(String jarFilenName){
Map<String, List<String>> map = new HashMap<String, List<String>>();
List<String> pathlist = new ArrayList<String>();
try {
Directory dir = FSDirectory.open(new File(MavenPomUtil.dirpath));
IndexReader reader = DirectoryReader.open(dir);
IndexSearcher searcher = new IndexSearcher(reader);
QueryParser parser = new QueryParser(Version.LUCENE_40, "filename", new StandardAnalyzer(Version.LUCENE_40));
Query query = parser.parse(jarFilenName);
TopDocs docs = searcher.search(query, 2);
for(ScoreDoc scoredoc:docs.scoreDocs){
Document doc = searcher.doc(scoredoc.doc);
String filepath = doc.get("filepath");
pathlist.add(filepath);
}
reader.close();
} catch (IOException e) {
e.printStackTrace();
} catch (ParseException e) {
e.printStackTrace();
}
map.put(jarFilenName, pathlist);
return map;
} /**
* 创建索引
* */
private void createMavenLibIndex(List<File> files){
try {
Directory dir = FSDirectory.open(new File(dirpath));
IndexWriterConfig config = new IndexWriterConfig(Version.LUCENE_40, new StandardAnalyzer(Version.LUCENE_40));
config.setOpenMode(OpenMode.CREATE);
IndexWriter writer = new IndexWriter(dir, config);
for(File file:files){
if(file.isFile()){
Document doc = new Document();
doc.add(new StringField("filename", file.getName(), Store.YES));
doc.add(new StringField("filepath",file.getPath(),Store.YES));
writer.addDocument(doc);
}
}
writer.forceMerge(1);//优化压缩段,大规模添加数据的时候建议,少使用本方法,会影响性能
writer.commit();//提交数据
writer.close();
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
} /**
* 查询待索引文件
* */
private void checkFile(File checkFile){// 查看目录下的所有文件
if (checkFile.exists()) {
if (checkFile.isDirectory()) {
File[] f = checkFile.listFiles();// 查看目录的文件
for (int i = 0; i < f.length; i++) {
checkFile(f[i]);
}
} else {
String fileName=checkFile.getName();
if(fileName.endsWith(".jar")){
files.add(checkFile);
}
}
}
} }
手动通过Lucene判断该pom文件中jar是否存在,子依赖没判断的更多相关文章
- 如何处理pom文件中没有找到HUB检查到高危漏洞的依赖包
最近使用HUB工具检查到maven工程中存在高危险漏洞,虽然定位到具体的引用包了,但是在pom文件中却没有发现该依赖包.此时,我们就需要用到这条命令mvn dependency:tree,该命令会将m ...
- idea中的pom文件中的jar包下载不了,手动下载jar包的方法
问题描述: 在pom文件中添加依赖的时候,程序怎么着都是下载不了,而且实验了各种方式: IDEA引MAVEN项目jar包依赖导入问题解决 https://www.cnblogs.com/a845701 ...
- Maven项目中在properties 中使用 ${} 来引用pom文件中的属性
比如在pom文件中定义了属性如下: <jdbc.host.global>127.0.0.1</jdbc.host.global> <jdbc.databasename.g ...
- 【IDEA】Maven踩坑:pom文件中的默认profiles不生效+IDEA中Maven的profiles使用说明
一.问题即分析 项目pom文件中的profiles有3个配置:dev.test和production 默认配置的是dev,如下图: 但在本地起服务时,读取的配置始终是test里的. 二.原因 2.1 ...
- Maven pom文件中dependency scope用法
在Maven中依赖的域有:compile.provided.runtime.system.test.import 一.compile(默认) 当依赖的scope为compile的时候,那么当前这个依赖 ...
- maven在pom文件中引入了icepdf-core包,pom文件却莫名的报错,说jai_core包missing
maven在pom文件中引入了icepdf-core包,却莫名的报错,说jai_core包missing,把这个jai_core包引入之后还是一样报错,PS:icepdf-core使用的时候不用引用j ...
- maven项目,导入的jar包,没有包含在pom文件中,install失败
[INFO] BUILD FAILURE[INFO] ------------------------------------------------------------------------[ ...
- 关于使用命令添加jar进自己的pom文件中-maven项目添加jar包
现在几乎开发项目都是使用的maven项目,但是有的时候可以使用比较偏门或者新的jar可能在网上搜不到在pom文件里的配置应该如何写,因此写下这篇博客. 比如我现在想加入的AAA.jar这个包 打开cm ...
- maven在pom文件中添加你想要的jar包
概述:POM 文件里面的依赖jar包经常需要添加, 仅需要在google中代码查找 :maven 你需的jar包名称 repository 用了Maven,所需的JAR包就不能再像往常一样,自己找到并 ...
随机推荐
- 《Concrete Mathematics》-chaper5-二项式系数
二项式系数,也是我们常用的组合数,最直观的组合意义就是从n个元素取k个元素所有可能的情况数,因此我们自然的得到下面二项式系数的定义式. 那么我们通过具有组合意义的二项系数,给出更加一般的二项式系数的定 ...
- poj 2117 Electricity【点双连通求删除点后最多的bcc数】
Electricity Time Limit: 5000MS Memory Limit: 65536K Total Submissions: 4727 Accepted: 1561 Descr ...
- psd via fft and pwelch
%fft and pwelch方法求取功率谱load x.mat Fs = 1; t = (0:1/Fs:1-1/Fs).'; Nx = length(x); % Window data w = ha ...
- Rational Rose 2007 &Rational Rose 2003 下载及破解方法和汉化文件下载
这么好的东西,不拿来出分享,我对不起原作者呀.可是我这里不知道作者是谁,感谢在先了. ed2k://|file|%5BIBM%E8%BD%AF%E4%BB%B6%E7%B3%BB%E5%88%97%5 ...
- 理解C# Attribute
1.Attribute与Property Attribute是特性,Property是属性. 2.Attribute与注释 注释:是给程序员看的,编译的时候会去掉这些信息,也就是说,程序集中没有注释的 ...
- 编译openjdk源码
http://www.cnblogs.com/ACFLOOD/p/5528035.html
- Windows8下如何使用命令行--转载
原文地址:http://jingyan.baidu.com/article/a501d80ce26fecec630f5ee0.html 命令行可用于实现一些没有图形界面的操作,然而windows8下的 ...
- GitHub干货分享(APP引导页的高度集成 - DHGuidePageHUD)
每一个APP都会用到APP引导页,分量不重但是不可缺少,不论是APP的首次安装还是版本的更新,首先展现给用户眼前的也就只有它了,当然这里讲的不是APP引导页的美化而是APP引导页的高度集成,一行代码搞 ...
- SpannableString使用详解
TextView算是android开发中最最常用的控件了,有的时候,我们要给一个TextView中的显示的文字设置不同的样式或者响应事件,比如同一个TextView中,有的字是红色,有的字是蓝色,有的 ...
- javascript笔记08:javascript的if...else语句
案例代码如下: <!DOCTYPE html> <html> <body> <p>点击这个按钮,获得基于时间的问候.</p> <but ...