初学springMvc 与Hibernate的整合,求指点

贴上异常:

 严重: Context initialization failed
org.springframework.beans.factory.parsing.BeanDefinitionParsingException: Configuration problem: Cannot locate BeanDefinitionDecorator for element [annotation-driven]
Offending resource: ServletContext resource [/WEB-INF/spring-servlet.xml]
还有:
三月 23, 2017 5:27:45 下午 org.apache.catalina.core.StandardContext listenerStart
严重: Exception sending context initialized event to listener instance of class org.springframework.web.context.ContextLoaderListener
org.springframework.beans.factory.parsing.BeanDefinitionParsingException: Configuration problem: Cannot locate BeanDefinitionDecorator for element [annotation-driven]
Offending resource: ServletContext resource [/WEB-INF/spring-servlet.xml]

还有spring-servlet.xml文件:

 <?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:tx="http://www.springframework.org/schema/tx"   
    xmlns:mvc="http://www.springframework.org/schema/mvc"   
    xmlns:context="http://www.springframework.org/schema/context"   
    xsi:schemaLocation="http://www.springframework.org/schema/beans   
    http://www.springframework.org/schema/beans/spring-beans.xsd   
    http://www.springframework.org/schema/tx   
    http://www.springframework.org/schema/tx/spring-tx.xsd   
    http://www.springframework.org/schema/mvc   
    http://www.springframework.org/schema/mvc/spring-mvc.xsd   
    http://www.springframework.org/schema/context   
    http://www.springframework.org/schema/context/spring-context.xsd
     http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.1.xsd">
     <context:component-scan base-package="com.jwt"/>
    <context:property-placeholder location="classpath:application.properties"/>
    <mvc:annotation-driven/>
     <!-- Specifying the Resource location to load JS, CSS, Images etc --> 
     <mvc:resources location="/resources/**" mapping="/resources/"/>
     <!-- View Resolver -->
     <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
         <property name="prefix" value="/WEB-INF/pages/"/>
         <property name="suffix" value=".jsp"/>
     </bean>
     <!-- DataSource -->
     <bean class="org.springframework.jdbc.datasource.DriverManagerDataSource" id="dataSource">
         <property name="dirverClassName" value="${database.driver}"></property>
         <property name="url" value="${database.url}"></property> 
         <property name="username" value="${database.user}"></property> 
         <property name="password" value="${database.password}"></property>
     </bean>

     <bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
          <property name="dataSource" ref="dataSource"></property> 
          <property name="hibernateProperties">
              <props>
                  <prop key="hibernate.dialect">${hibernate.dialect}</prop>
                  <prop key="hibernate.hbm2ddl.auto">${hibernate.hbm2ddl.auto}</prop>
                  <prop key="hibernate.format_sql">${hibernate.format_sql}</prop> 
                  <prop key="hibernate.show_sql">${hibernate.show_sql}</prop> 
              </props>
              </property>
              <property name="packagesToScan" value="com.jwt.model"></property>
     </bean>
     <!-- Transaction -->
     <bean id="transactionManager" class="org.springframework.orm.hibernate4.HibernateTransactionManager">
         <property name="sessionFactory" ref="sessionFactory" />
          <tx:annotation-driven transaction-manager="transactionManager" />

     </bean>
    </beans>

没有时间,有时间给你看

http://bbs.csdn.net/topics/270055996