此錯誤是由於對xml文件的解析不正確。 使用Eclipse來驗證它給人的錯誤:
cvc-complex-type.2.3: Element 'beans' cannot have character [children], because the type's content type is element-only.
似乎有一些奇怪的字符中的一個或多個的<bean>
聲明之間。你是否從其他地方複製過這些文字?
刪除<bean>
定義之間的所有空格和換行符,並將其放回到您的編輯器中。
UPDATE 複製&粘貼到記事本中++您提供的codepaste文字和字符集設置爲UTF-8顯示,在空行這些字符:XA0。這是
的標準Unicode轉換。這可能是造成這個問題的原因。
這對我驗證OK:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"
destroy-method="close">
<property name="driverClassName" value="com.mysql.jdbc.Driver" />
<property name="url" value="jdbc:mysql://localhost:3306/HibernateDB" />
<property name="username" value="HibernateDB" />
<property name="password" value="java" />
</bean>
<bean id="sessionFactory"
class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="configurationClass" value="org.hibernate.cfg.AnnotationConfiguration" />
<property name="annotatedClasses">
<list>
<value>hdao.HibernateObject</value>
</list>
</property>
</bean><bean id="springHibernateOperator" class="hdao.SpringHibernateOperatorImplementation">
<property name="sessionFactory" ref="sessionFactory" />
</bean>
</beans>
發佈的XML和錯誤,你是在得到之間隱藏的性格你的問題請 –