<bean id="empService"
class="org.springframework.transaction.interceptor.TransactionProxyFactoryBean">
<property name="transactionManager">
<ref local="transactionManager" />
</property>
<property name="target">
<ref local="empDAO" />
</property>
<property name="transactionAttributes">
<props>
<prop key="find*">PROPAGATION_REQUIRED,readOnly</prop>
<prop key="save*">PROPAGATION_REQUIRED</prop>
</props>
</property>
</bean>
仔细看一下配置是不是完全正确.类路径和名字大小,感觉你的这个bean配置有问题呀,要是查不出问题的话,把bean定义部分注释掉吧,在把问题一步步找出来,实在没招,你就在找网上的答案吧