错误信息org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'productBOTX' defined in ServletContext resource [/WEB-INF/applicationContext.xml]: Instantiation of bean failed; nested exception is org.springframework.beans.BeanInstantiationException: Could not instantiate bean class [org.springframework.transaction.interceptor.TransactionProxyFactoryBean]: Constructor threw exception; nested exception is java.lang.NoSuchMethodError: org.springframework.util.ClassUtils.isPresent(Ljava/lang/String;)Z
org.springframework.beans.BeanInstantiationException: Could not instantiate bean class [org.springframework.transaction.interceptor.TransactionProxyFactoryBean]: Constructor threw exception; nested exception is java.lang.NoSuchMethodError: org.springframework.util.ClassUtils.isPresent(Ljava/lang/String;)Z
java.lang.NoSuchMethodError: org.springframework.util.ClassUtils.isPresent(Ljava/lang/String;)Z
at org.springframework.aop.framework.DefaultAopProxyFactory.<clinit>(DefaultAopProxyFactory.java:59)
at org.springframework.aop.framework.ProxyConfig.<init>(ProxyConfig.java:72)
at org.springframework.transaction.interceptor.TransactionProxyFactoryBean.<init>(TransactionProxyFactoryBean.java:113)
-----配置------
<bean id="productBOTX" class="org.springframework.transaction.interceptor.TransactionProxyFactoryBean" >
<property name="transactionManager" ref="transactionManager" />
<property name="proxyTargetClass" value="true" /> 
<property name="target" ref="productBO"></property>
<!-- 
<property name="interceptorNames">
<list>
<value>transactionInterceptor</value>
</list>
</property>
 -->
<property name="transactionAttributes">
<props>
<prop key="updateProductLock">PROPAGATION_REQUIRED</prop>
</props>
</property>
 
</bean>

<bean id="transactionInterceptor" class="org.springframework.transaction.interceptor.TransactionInterceptor">
<property name="transactionManager" ref="transactionManager" />
<property name="transactionAttributes" value="com.wsy.bo.product.ProductBO.updateProductLock=PROPAGATION_REQUIRED"/>
</bean> <bean id="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
<property name="sessionFactory" ref="sessionFactory" />
</bean>
<bean name="productBO" class="com.wsy.bo.product.ProductBO" >
<property name="productDAO" ref="productDAO"></property>
<property name="orderBO" ref="orderBO"></property>
<property name="userLoginBO" ref="userLoginBO"></property>
</bean>
服务器加载就出错