问题:使用spring的配置事物注解@Transactional,发现不起作用。而在配置文件总配置的事务可以正常使用。
原因:在文件中没有加 <tx:annotation-driven /> 不支持事务的注解;
解决办法:在spring 配置文件中 加 <tx:annotation-driven />
问题:使用spring的配置事物注解@Transactional,发现不起作用。而在配置文件总配置的事务可以正常使用。
原因:在文件中没有加 <tx:annotation-driven /> 不支持事务的注解;
解决办法:在spring 配置文件中 加 <tx:annotation-driven />