Skip to content

Instantly share code, notes, and snippets.

@cbeams
Created January 17, 2011 14:04
Show Gist options
  • Save cbeams/782870 to your computer and use it in GitHub Desktop.
Save cbeams/782870 to your computer and use it in GitHub Desktop.
@Configuration
class TxConfig {
@Feature
public TxAnnotationDriven tx() {
return new TxAnnotationDriven(this.txManager()).proxyTargetClass(false);
}
@SpringConfigured
public Order configureOrder(Order order) {
order.setRepository(myRepository());
}
@Bean
public TransactionalTestBean testBean() {
return new TransactionalTestBean();
}
@Bean
public PlatformTransactionManager txManager() {
return new CallCountingTransactionManager();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment