@ -40,7 +40,7 @@ public class TransactionConfig {
@Bean
public TransactionInterceptor txAdvice() {
RuleBasedTransactionAttribute write = new RuleBasedTransactionAttribute();
write.getRollbackRules().add(new RollbackRuleAttribute(Exception.class));
write.getRollbackRules().add(new RollbackRuleAttribute(Throwable.class));
Properties txAttrs = new Properties();
txAttrs.setProperty("*", write.toString());