mysileng
posts - 200, comments - 8, trackbacks - 0, articles - 0
导航
C++博客
首页
新随笔
联系
聚合
管理
<
2012年11月
>
日
一
二
三
四
五
六
28
29
30
31
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
1
2
3
4
5
6
7
8
常用链接
我的随笔
我的评论
我参与的随笔
留言簿
给我留言
查看公开留言
查看私人留言
随笔分类
C(4)
c++(9)
Hadoop(12)
HBASE(2)
hibernate(1)
Java(4)
JULY_程序员编程艺术(17)
LIBEVENT(13)
linux编程(28)
linux多线程专题(8)
linux基础(15)
linux进程通信专题(9)
linux内核(13)
Myeclipse(3)
redis(6)
STL(5)
本人分析研究(3)
分布式(3)
海量数据处理(10)
前台(1)
设计模式(2)
数据结构与算法(14)
数据挖掘(1)
学习方法与路线(2)
杨强linux视频笔记系列(13)
随笔档案
2015年1月 (1)
2014年9月 (5)
2014年8月 (2)
2014年7月 (1)
2014年4月 (2)
2013年10月 (1)
2013年9月 (1)
2013年6月 (10)
2013年5月 (15)
2013年4月 (13)
2013年3月 (5)
2013年2月 (12)
2013年1月 (23)
2012年12月 (49)
2012年11月 (28)
2012年10月 (10)
2012年9月 (8)
2012年8月 (4)
2012年7月 (2)
2012年1月 (2)
2011年12月 (1)
2011年11月 (1)
2011年9月 (1)
2011年5月 (2)
2011年3月 (1)
搜索
最新评论
1. re: select函数与stdio混用的不良后果 (原)
赞!
--2b程序员
2. re: 最长上升子序列 O(nlogn)解法 (转)
写的不错 谢谢
--无忧
3. re: 进程并发服务器中,sigchld信号引发的血案?(原)
评论内容较长,点击标题查看
--anonymous
4. re: 翻译:libevent参考手册第六章:bufferevent:概念和入门 (八) (转)[未登录]
不错,学习了
--zz
5. re: 最小堆&&最大堆的实现(c++)(转)[未登录]
错误也太多了吧。
--ccc
阅读排行榜
1. 最长上升子序列 O(nlogn)解法 (转)(14839)
2. libevent: evbuffer缓冲 (转)(13990)
3. Skip List(跳跃表)原理详解与实现(13303)
4. 翻译:libevent参考手册第六章:bufferevent:概念和入门 (八) (转)(9935)
5. __builtin_expect 解惑(7633)
评论排行榜
1. 慢系统调用与信号中断(转)(2)
2. HADOOP_CLASSPATH设置(转)(1)
3. 最小堆&&最大堆的实现(c++)(转)(1)
4. select函数与stdio混用的不良后果 (原)(1)
5. 翻译:libevent参考手册第六章:bufferevent:概念和入门 (八) (转)(1)
Cannot find the declaration of element 'beans'异常的解决办法
Posted on 2012-07-16 19:21
鑫龙
阅读(1995)
评论(0)
编辑
收藏
引用
所属分类:
Myeclipse
在网上搜了一下,发现有很多人提供了解决的办法,但我一一试过,最终都不行。
解决方案列表如下:
1、[分享]Spring启动异常: cvc-elt.1: Cannot find the declaration of element 'beans'
2、spring从sun jdk到IBMjdk
这两篇文章中都提供了各自的解决方法,但为何在我的应用中就是不行了?
其实不是不行,而是需要根据Spring的版本不同,进行不同的处理,刚好我用的是Spring2.5,所以解决起来需要另一种方法,即配置文件XML的头部的声明应该为:
<?
xml version="1.0" encoding="UTF-8"
?>
<!--
- Application context definition for JPetStore's business layer.
- Contains bean references to the transaction manager and to the DAOs in
- dataAccessContext-local/jta.xml (see web.xml's "contextConfigLocation").
-->
<
beans
xmlns
="http://www.springframework.org/schema/beans"
xmlns:xsi
="http://www.w3.org/2001/XMLSchema-instance"
xmlns:aop
="http://www.springframework.org/schema/aop"
xmlns:tx
="http://www.springframework.org/schema/tx"
xsi:schemaLocation
="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd"
>
这段声明,是来自Spring2.5包中自带的Sample目录中的一些例子的代码中,当我把我的XML的头部改成这样以后,果然可以顺利启动。
只有注册用户
登录
后才能发表评论。
【推荐】100%开源!大型工业跨平台软件C++源码提供,建模,组态!
相关文章:
MyEclipseGen
Cannot find the declaration of element 'beans'异常的解决办法
Eclipse 报 “Exception in thread "main" java.lang.OutOfMemoryError: Java heap space ”错误
网站导航:
博客园
IT新闻
BlogJava
知识库
博问
管理
Powered by:
C++博客
Copyright © 鑫龙