problems
sc736031305
这个作者很懒,什么都没留下…
展开
-
eclipse创建Maven项目,无法添加src/main/java source folder 问题
创建了一个Maven项目,在添加source folder时,提示“The folder is already a source folder. ”即你要添加的源码文件夹已经是一个源码文件夹,它已经存在,无法添加。 解决办法: 项目上鼠标右键build path -->Configure Build path --> source ,选择 src/ma...原创 2015-02-26 10:28:37 · 270 阅读 · 0 评论 -
eclipse提示java compiler level does not match the version of the installed java
eclipse提示“java compiler level does not match the version of the installed java project facet”的解决办法: 在项目的根目录下有个.settings文件夹,用文本编辑软件打开.settings文件夹下的org.eclipse.wst.common.project.facet.core.x...原创 2015-02-26 15:45:36 · 420 阅读 · 0 评论 -
Maven如何安装Jar包到本地仓库
mvn install:install-file -DgroupId=org.wltea.analyzer -DartifactId=IKAnalyzer -Dversion=5.0 -Dpackaging=jar -Dfile=D:/IKAnalyzer-5.0.jar -Dfile就是你的jar包在你本地硬盘的文件路径 ...原创 2015-03-18 12:59:27 · 161 阅读 · 0 评论 -
The exception "no segments* file" about lucene
java.io.FileNotFoundException: no segments* file found in org.apache.lucene.store.FSDirectory@/home/<path>: files: at org.apache.lucene.index.SegmentInfos$FindSegmentsF...2015-04-19 15:10:22 · 153 阅读 · 0 评论 -
the exception "Failure to transfer org.apache.maven:maven-parent" about Maven
今天使用Maven碰到了这个异常,异常信息如下: Failure to transfer org.apache.maven:maven-parent:pom:17 from http://repo.maven.apache.org/maven2 was cached in the local repository, resolution will not be reattempte...2015-04-30 09:12:26 · 350 阅读 · 0 评论 -
Maven异常:Plugin execution not covered by lifecycle configuration
异常信息如下: Plugin execution not covered by lifecycle configuration: org.codehaus.mojo:aspectj-maven-plugin:1.3.1:compile (execution: default, phase: compile) Eclipse中提示如图: 解决办法: 点...2015-06-02 14:11:37 · 142 阅读 · 0 评论 -
maven-dependency-plugin(goals copy-dependencies unpack ) is not supported by m2e
Maven异常: maven-dependency-plugin (goals copy-dependencies unpack ) is not supported by m2e 解决办法如下: 将<plugins>元素包裹在<pluginManagement>元素之内,如图: 改好后,crel + s保存你的pom.xml,然...2015-09-21 15:05:23 · 130 阅读 · 0 评论 -
Eclipse中JS文件即使取消语法验证仍提示错误
我想大家应该都遇到过这种问题:js文件一直提示报错,如图: 通常的做法都是取消js文件的语法验证,操作如图: 首先你的项目上鼠标右键-->Properties 然而,这招并不是放之四海而皆准的,如果取消了js语法验证仍然报错怎么办? 其实对付这种问题的终极解决办法如下: 首先你的项目上鼠标右键-->Properties 如果有多个js文件,一个个的ad...2015-12-11 18:51:44 · 425 阅读 · 0 评论