Skip to content

Instantly share code, notes, and snippets.

@cbeams
Created January 17, 2011 13:16
Show Gist options
  • Save cbeams/782830 to your computer and use it in GitHub Desktop.
Save cbeams/782830 to your computer and use it in GitHub Desktop.
@Configuration
class TxConfig {
@SpecMethod
public TxAnnotationDriven tx() {
return new TxAnnotationDriven(this.txManager());
}
@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