当前位置: 代码迷 >> Java Web开发 >> The content of element type"beans"must match "(description?(import|alias|bean)"该怎么处理
  详细解决方案

The content of element type"beans"must match "(description?(import|alias|bean)"该怎么处理

热度:878   发布时间:2016-04-16 21:43:21.0
The content of element type"beans"must match "(description?,(import|alias|bean)"
我搭建ssi框架 报错 请各位大侠帮忙看看为什么
我的applicationContext.xml文件:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd">

<beans default-lazy-init="false">
<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<list>
<value>classpath:cn/ssi/conf/sqlMapping.properties</value>
</list>
</property>
</bean>
<bean id="dataSource"
class="org.apache.commons.dbcp.BasicDataSource"
destroy-method="close">
<property name="driverClassName">
<value>com.mysql.jdbc.Driver</value>
</property>
<property name="url">
<value>${jdbc.url}</value>
</property>
<property name="username">
<value>${jdbc.username}</value>
</property>
<property name="password">
<value>${jdbc.password}</value>
</property>
<property name="maxActive">
<value>20</value>
</property>
<property name="maxIdle" value="25" />
<property name="minIdle" value="10" />
<property name="maxWait" value="3000" />
<property name="validationQuery" value="select 1 from dual" />
<property name="testOnBorrow" value="true" />
<property name="testOnReturn" value="true" />
<property name="testWhileIdle" value="true" />
<property name="removeAbandoned" value="true" />
<property name="removeAbandonedTimeout" value="300" />
<property name="logAbandoned" value="true" />
<property name="timeBetweenEvictionRunsMillis" value="3000" />
<property name="numTestsPerEvictionRun" value="10" />
<property name="minEvictableIdleTimeMillis" value="3000" />
</bean>

<!-- ===================================== -->
<!-- Configuration for dao -->
<!-- ===================================== -->

<bean id="sqlMapClient"
class="org.springframework.orm.ibatis.SqlMapClientFactoryBean">
<property name="configLocation">
<value>classpath:cn/ssi/conf/sqlMapConfig.xml</value>
</property>
<!-- <property name="dataSource" ref="dataSource"/> --> 
</bean>
//数据库操作
<bean id="loginDB" class="cn.ssi.db.loginDB">
  <property name="dataSource">
     <ref bean="dataSource"/>
  </property>
  <property name="sqlMapClient">
     <ref local="sqlMapClient"/>
  </property>
</bean>
<bean id="logindb" class="cn.ssi.active.loginActive">
  <property name="loginDB">
     <ref local="loginDB"/>
  </property>
</bean>

</beans>

麻烦看看怎么回事  谢谢
------解决思路----------------------
你把错误的异常代码贴上来!
------解决思路----------------------
怎么解决的啊
  相关解决方案