You will be Success
if you study hard every day.
BlogJava
首頁
新隨筆
聯系
聚合
管理
隨筆分類
AJAX
(rss)
Appfuse學習(1)
(rss)
JAVASCRIPT(1)
(rss)
SSH(1)
(rss)
個人收藏(5)
(rss)
隨筆檔案
2008年1月 (2)
2007年8月 (1)
2007年7月 (1)
2007年6月 (1)
2007年5月 (3)
2007年4月 (1)
文章檔案
2007年3月 (1)
最新隨筆
1.?歡迎光臨本人小站http://www.spartasoft.cn
2.?求助,已經焦頭爛額了,關于hibernate取blob字段只能取86字節
3.?FCKEditor中表格列以及多行列無法合并的解決辦法
4.?MyEclipse 快捷鍵
5.?關于利用dom返回xml亂碼的解決方案
6.?請教一個hibernate組合查詢的問題,謝謝!
7.?給大家推薦個網站
8.?Appfuse集成MS-SQL應用
9.?MyEclipse Error getConfigured / ExtensionValidator error解決方案
最新評論
1.?re: MyEclipse Error getConfigured / ExtensionValidator error解決方案
評論內容較長,點擊標題查看
--蘭永
2.?re: MyEclipse 快捷鍵
好東西。
謝了哈。
--M
3.?re: 求助,已經焦頭爛額了,關于hibernate取blob字段只能取86字節
使用byte[]取吧,BLOB不一定兼容的
--sss
4.?re: 求助,已經焦頭爛額了,關于hibernate取blob字段只能取86字節
現在存是沒問題的,如果用jdbc方式完全可以取出來,但是這樣的問題是要讀取兩邊數據庫。
--jhlcss
5.?re: 求助,已經焦頭爛額了,關于hibernate取blob字段只能取86字節
oracle的 blob有點特殊 要先插入空字節進去 然后更新 才能正常 具體搜索網絡
--hcq
MyEclipse Error getConfigured / ExtensionValidator error解決方案
Posted on 2007-04-26 10:30
姜海龍
閱讀(5331)
評論(13)
編輯
收藏
所屬分類:
SSH
系統環境: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
18
,
2006
10
:
21
:
13
AM org.apache.catalina.util.ExtensionValidator validateManifestResources
INFO: ExtensionValidator[
/
TestSpringMVC][commons
-
attributes
-
api.jar]: Required extension
"
ant
"
not found.
Aug
18
,
2006
10
:
21
:
13
AM org.apache.catalina.util.ExtensionValidator validateManifestResources
INFO: ExtensionValidator[
/
TestSpringMVC][commons
-
attributes
-
compiler.jar]: Required extension
"
ant
"
not found.
Aug
18
,
2006
10
:
21
:
13
AM org.apache.catalina.util.ExtensionValidator validateManifestResources
INFO: ExtensionValidator[
/
TestSpringMVC][commons
-
attributes
-
compiler.jar]: Required extension
"
javadoc
"
not found.
Aug
18
,
2006
10
:
21
:
13
AM org.apache.catalina.util.ExtensionValidator validateManifestResources
INFO: ExtensionValidator[
/
TestSpringMVC]: Failure to find
3
required extension(s).
Aug
18
,
2006
10
:
21
:
13
AM org.apache.catalina.core.StandardContext start
SEVERE: Error getConfigured
Aug
18
,
2006
10
:
21
:
13
AM org.apache.catalina.core.StandardContext start
SEVERE: Context [
/
TestSpringMVC] startup failed due to previous errors
Aug
18
,
2006
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 的錯誤
新用戶注冊
刷新評論列表
只有注冊用戶
登錄
后才能發表評論。
網站導航:
博客園
IT新聞
Chat2DB
C++博客
博問
管理
常用鏈接
我的隨筆
我的評論
我的參與
最新評論
評論排行榜
1.?MyEclipse Error getConfigured / ExtensionValidator error解決方案(13)
2.?求助,已經焦頭爛額了,關于hibernate取blob字段只能取86字節(3)
3.?請教一個hibernate組合查詢的問題,謝謝!(2)
4.?MyEclipse 快捷鍵 (1)
5.?關于利用dom返回xml亂碼的解決方案(0)
閱讀排行榜
1.?MyEclipse Error getConfigured / ExtensionValidator error解決方案(5331)
2.?關于利用dom返回xml亂碼的解決方案(2358)
3.?請教一個hibernate組合查詢的問題,謝謝!(1125)
4.?求助,已經焦頭爛額了,關于hibernate取blob字段只能取86字節(961)
5.?Appfuse集成MS-SQL應用(898)
posts - 9, comments - 19, trackbacks - 0, articles - 1
Copyright © 姜海龍
主站蜘蛛池模板:
亚洲av区一区二区三
|
亚洲欧洲日产国码无码久久99
|
亚洲暴爽av人人爽日日碰
|
免费成人午夜视频
|
中文字幕免费人成乱码中国
|
亚洲精品国产福利片
|
日本一区二区三区日本免费
|
热久久这里是精品6免费观看
|
亚洲一区精品视频在线
|
亚洲国产午夜福利在线播放
|
4444www免费看
|
五月天国产成人AV免费观看
|
亚洲黄色免费观看
|
亚洲国产成人久久综合碰
|
曰批视频免费40分钟试看天天
|
亚洲黑人嫩小videos
|
国产大片免费观看中文字幕
|
四虎国产精品永久免费网址
|
婷婷亚洲综合一区二区
|
亚洲天堂中文资源
|
亚洲午夜激情视频
|
在线免费观看色片
|
免费无码成人AV在线播放不卡
|
亚洲av无码成人影院一区
|
久久精品国产亚洲av麻豆小说
|
亚洲VA综合VA国产产VA中
|
成人免费视频77777
|
中文字幕一区二区免费
|
污污视频免费观看网站
|
亚洲精品在线免费看
|
亚洲精品乱码久久久久久中文字幕
|
午夜私人影院免费体验区
|
国产成人精品无码免费看
|
免费看美女午夜大片
|
久久久久se色偷偷亚洲精品av
|
亚洲av无码一区二区三区乱子伦
|
国产最新凸凹视频免费
|
希望影院高清免费观看视频
|
久久青草精品38国产免费
|
国产VA免费精品高清在线
|
亚洲www77777
|