请教spring事务控制回滚的问题

问一下:
[color=orange]
<tx:advice id="txAdvice" transaction-manager="txManager">
  <tx:attributes>
    <tx:method name="get*" read-only="false" rollback-for="NoProductInStockException"/>
    <tx:method name="*"/>
  </tx:attributes>
</tx:advice>

[/color]

这里的NoProductInStockException是在那里抛出的?dao层还是service层啊?

你可能感兴趣的:(DAO,spring,AOP)