系统环境:WinXP
数据库:SQL2000
开发工具:MyEclipse5.5M2

之所以采用MyEclipse5.5M2主要时看重这个版本的MyEclipse集成了最新的Spring2.0版本。这个系统采用了SSH框架结构,由于是初次使用,而且人员经验有限,遇到了比较多的问题,其中Error getConfigured / ExtensionValidator error错误是困扰了我两天的问题。
出现这个问题的条件是使用MyEclipse5.5M2,并且使用Spring Core包。
问题的表现形式是,当把项目部署到Tomcat服务器时,出现如下错误:
INFO: Deploying web application archive TestSpringMVC.war
Aug 
182006 10:21:13 AM org.apache.catalina.util.ExtensionValidator validateManifestResources
INFO: ExtensionValidator[
/TestSpringMVC][commons-attributes-api.jar]: Required extension "ant" not found.
Aug 
182006 10:21:13 AM org.apache.catalina.util.ExtensionValidator validateManifestResources
INFO: ExtensionValidator[
/TestSpringMVC][commons-attributes-compiler.jar]: Required extension "ant" not found.
Aug 
182006 10:21:13 AM org.apache.catalina.util.ExtensionValidator validateManifestResources
INFO: ExtensionValidator[
/TestSpringMVC][commons-attributes-compiler.jar]: Required extension "javadoc" not found.
Aug 
182006 10:21:13 AM org.apache.catalina.util.ExtensionValidator validateManifestResources
INFO: ExtensionValidator[
/TestSpringMVC]: Failure to find 3 required extension(s).
Aug 
182006 10:21:13 AM org.apache.catalina.core.StandardContext start
SEVERE: Error getConfigured
Aug 
182006 10:21:13 AM org.apache.catalina.core.StandardContext start
SEVERE: Context [
/TestSpringMVC] startup failed due to previous errors
Aug 
182006 10:21:13 AM org.apache.catalina.core.StandardContext stop
INFO: Container org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[
/TestSpringMVC] has not been started
这个问题导致项目无法启动,也就无法去访问。
这个问题出现的原因是commons-attributes-compiler.jar包的MANIFEST.MF文件出现问题,如果对这个包没有依赖,直接删除这个包的引用,项目就可以正常启动,如果对这个包有依赖,那么可以通过以下两种方式来解决。
1、修改MANIFEST.MF文件
原compiler.jar包中的MF文件结构
Manifest-Version: 1.0
Ant
-Version: Apache Ant 1.5.3 
Created
-By: Apache Maven
Built
-By: hen
Package: org.apache.commons.attributes
Build
-Jdk: 1.4.2_05
Extension
-Name: commons-attributes-api
Specification
-Title: Client API for Jakarta Commons Attributes.
Specification
-Vendor: The Apache Software Foundation
Implementation
-Title: org.apache.commons.attributes
Implementation
-Vendor: The Apache Software Foundation
Implementation
-Version: 2.2
Extension
-List: ant qdox
ant
-Extension-Name: ant
ant
-Implementation-Version: 1.5
ant
-Implementation-URL: http://www.ibiblio.org/maven/ant/jars/ant-1.5.
 jar
qdox
-Extension-Name: qdox
qdox
-Implementation-Version: 1.5
qdox
-Implementation-URL: http://www.ibiblio.org/maven/qdox/jars/qdox-1
 .5.jar
Implementation
-Vendor-Id: org.apache
X
-Compile-Source-JDK: 1.4
X
-Compile-Target-JDK: 1.4
我们可以看到URL后面的地址中含有一些不必要的字符,将MF文件修改如下
Manifest-Version: 1.0
Ant
-Version: Apache Ant 1.5.3 
Created
-By: Apache Maven
Built
-By: hen
Package: org.apache.commons.attributes
Build
-Jdk: 1.4.2_05
Extension
-Name: commons-attributes-api
Specification
-Title: Client API for Jakarta Commons Attributes.
Specification
-Vendor: The Apache Software Foundation
Implementation
-Title: org.apache.commons.attributes
Implementation
-Vendor: The Apache Software Foundation
Implementation
-Version: 2.2
Extension
-List: ant qdox
ant
-Extension-Name: ant
ant
-Implementation-Version: 1.5
ant
-Implementation-URL: http://www.ibiblio.org/maven/ant/jars/ant-1.5.jar
qdox-Extension-Name: qdox
qdox
-Implementation-Version: 1.5
qdox
-Implementation-URL: http://www.ibiblio.org/maven/qdox/jars/qdox-1.5.jar
Implementation-Vendor-Id: org.apache
X
-Compile-Source-JDK: 1.4
X
-Compile-Target-JDK: 1.4
这个问题就可以解决。
2、替换compiler.jar包
下载,将我提供的jar包下载之后替换也可以解决这个问题

Feedback

# re: MyEclipse Error getConfigured / ExtensionValidator error解决方案[未登录]  回复  更多评论   

2007-04-27 18:59 by java
1.直接删除这个包的引用,怎么操作啊?
2.替换compiler.jar包了还是报同样的错误啊!
谢谢你的回答了!

# re: MyEclipse Error getConfigured / ExtensionValidator error解决方案[未登录]  回复  更多评论   

2007-04-27 19:10 by java
你替换的文件里内容还是:
Manifest-Version: 1.0
Ant-Version: Apache Ant 1.5.3
Created-By: Apache Jakarta Maven
Built-By: leo
Package: org.apache.commons.attributes.compiler
Build-Jdk: 1.4.0_01
Extension-Name: commons-attributes-compiler
Specification-Version: 1.0
Specification-Vendor: The Apache Software Foundation
Specification-Title: Attribute Compiler
Implementation-Version: 2.1
Implementation-Vendor: The Apache Software Foundation
Implementation-Vendor-Id: ASF

# re: MyEclipse Error getConfigured / ExtensionValidator error解决方案  回复  更多评论   

2007-04-27 21:15 by 姜海龙
替换之后,重新发布,没问题的,我这里没问题啊,你看看WEB下面的LIB下面的文件是否正确

# re: MyEclipse Error getConfigured / ExtensionValidator error解决方案  回复  更多评论   

2007-04-28 11:05 by 大山
你的方法 我都用了怎么还是不能解决问题啊

# re: MyEclipse Error getConfigured / ExtensionValidator error解决方案  回复  更多评论   

2007-05-15 17:49 by shgavin
这位老兄说的没错.采用这种方式完全可行.谢谢!

# re: MyEclipse Error getConfigured / ExtensionValidator error解决方案  回复  更多评论   

2007-08-12 01:41 by danielchen19
之前我也因为这个问题困扰了我很久,现在看了之后,按照楼主的方法做后,现在我的项目也没了这些错误啦,真要感谢楼主。

# re: MyEclipse Error getConfigured / ExtensionValidator error解决方案  回复  更多评论   

2007-11-15 15:15 by *********
我的问题也解决了.真的谢谢楼主了呵呵

# re: MyEclipse Error getConfigured / ExtensionValidator error解决方案  回复  更多评论   

2007-11-19 11:07 by 专注JAVA开源
问题啊~

# re: MyEclipse Error getConfigured / ExtensionValidator error解决方案  回复  更多评论   

2007-11-19 11:54 by 专注JAVA开源
这个问题解决了,但又出了新的问题

Ignoring namespace handler [org.acegisecurity.config.SecurityNamespaceHandler]: handler class not found
java.lang.ClassNotFoundException:

# re: MyEclipse Error getConfigured / ExtensionValidator error解决方案  回复  更多评论   

2007-11-19 11:54 by 专注JAVA开源
有知道的吗?急~

# re: MyEclipse Error getConfigured / ExtensionValidator error解决方案  回复  更多评论   

2007-11-30 13:04 by stiveen
不错。

# re: MyEclipse Error getConfigured / ExtensionValidator error解决方案  回复  更多评论   

2007-12-14 10:55 by xp
这个文件怎么修改,我的怎么修改不了?

# re: MyEclipse Error getConfigured / ExtensionValidator error解决方案  回复  更多评论   

2011-05-25 10:28 by 兰永
谢谢 那个问题解决了 但是出现Exception sending context initialized event to listener instance of class org.springframework.web.context.ContextLoaderListener 的错误

只有注册用户登录后才能发表评论。


网站导航:
 

posts - 9, comments - 19, trackbacks - 0, articles - 1

Copyright © 姜海龙