解决方案 »

  1.   

    绝对有这个类LocalSessionFactoryBean,你标题是这个org.hibernate.cache.CacheP 是在cache包里面,我估计是配置cache出了问题哟,这是我spring3.1+hibernate4集成的Ehcache<bean id="cacheManagerFactory" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean">  
            <property name="configLocation" value="classpath:ehcache.xml"/>
            <property name="shared" value="true"></property>
        </bean>  
        <bean id="cacheManager" class="org.springframework.cache.ehcache.EhCacheCacheManager">  
            <property name="cacheManager" ref="cacheManagerFactory"/>  
        </bean>