@Transaction注解的使用问题 1、@Transaction放在接口实现类或接口实现方法上,而不是接口类中 2、@Transaction应用在service层而不能在controller层使用 3、对使用@Transaction的service方法不能使用try{}catch{}捕捉,应该使用throws抛出在controller层try{}catch{}。