严重: Exception sending context initialized event to listener instance of class org.springframework.web.context.ContextLoaderListener
org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: Line 9 in XML document from ServletContext resource [/WEB-INF/classes/applicationContext.xml] is invalid; nested exception is org.xml.sax.SAXParseException: cvc-elt.1: Cannot find the declaration of element 'beans'.  spring 的配置
   <?xml version="1.0" encoding="UTF-8"?>
<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.5.xsd
  http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd
  http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">
<bean id="sessionFactory"
class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="configLocation"
value="classpath:hibernate.cfg.xml">
</property>
</bean>
<bean name="hibernateTemplate" class="org.springframework.orm.hibernate3.HibernateTemplate">
<property name="sessionFactory" ref="sessionFactory"></property>
</bean>
<bean name="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
<property name="sessionFactory" ref="sessionFactory"></property>
</bean>
<aop:config>
<aop:pointcut id="defaultServiceOperation"
expression="execution(* service.*.*(..))" 
/>
<aop:advisor pointcut-ref="defaultServiceOperation"
advice-ref="txAdvice" />
</aop:config>
<tx:advice id="txAdvice" transaction-manager="transactionManager">
<tx:attributes>
<tx:method name="get*" read-only="true" />
<tx:method name="find*" read-only="true" />
<tx:method name="login*" read-only="true" />
<tx:method name="*" />
</tx:attributes>
</tx:advice>
<bean id="loginDao" class="Dao.LoginDao">
  <property name="hibernateTemplate" ref="hibernateTemplate" /> 
  </bean>
  <bean id="loginServer" class="service.LoginService">
  <property name="loginDao" ref="loginDao" /> 
  </bean>
  <bean id="wentedDao" class="Dao.WantedDao">
  <property name="hibernateTemplate" ref="hibernateTemplate" /> 
  </bean>
  <bean id="wantedServices" class="service.WantedService">
  <property name="wentedDao" ref="wentedDao" /> 
  </bean>
</beans>第9行是
  http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">

解决方案 »

  1.   

    你的applicationContext.xml是放在classpath还是其他地方?,放在classpath就改web.xml
    <context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath:applicationContext.xml</param-value>
    </context-param> <listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>
      

  2.   

    补充一下,放在WEB-INF下面就
    <context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>/WEB-INF/applicationContext.xml</param-value>
    </context-param><listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>
      

  3.   

    第9行是beans标签起标结束的地方,
    首先能怀疑的是spring 2.5的jar包有没在项目构建路径中。
      

  4.   

      这个项目之前是可以运行的,不过我重装了一次系统
     后面java运行环境又搭建了一次,问题就出来了
      spring 2.5的jar包应该没少,我去看下被编译后的lib 中有没有这些包