Advertisement
Guest User

Untitled

a guest
Jan 18th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. @Configuration
  2. @EnableSpringConfigured
  3. @EnableLoadTimeWeaving(aspectjWeaving = AspectJWeaving.ENABLED)
  4. @EnableAsync(mode = AdviceMode.PROXY, proxyTargetClass = true)
  5. @Import({
  6. ...
  7. })
  8. @ComponentScan(
  9. basePackageClasses = {
  10. ...
  11. }
  12. )
  13. public class RootConfig implements AsyncConfigurer {
  14.  
  15. <!DOCTYPE aspectj PUBLIC "-//AspectJ//DTD//EN" "http://www.eclipse.org/aspectj/dtd/aspectj.dtd">
  16. <aspectj>
  17. <weaver>
  18. <!-- only weave classes in our application-specific packages -->
  19. <include within="aero.geoscan..*"/>
  20. </weaver>
  21. </aspectj>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement