Created
January 17, 2011 14:04
-
-
Save cbeams/782870 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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