Browse Source
Added an aop.xml to only compile explicitly listed aspects in the cross-store module. This is needed as Spring 4.1 includes a new aspect for JavaEE 7 JCache support that has optional dependencies which we don't have in the classpath. Trying to compile all aspects contained in spring-aspects will result in ClassNotFoundExceptions for the aspects with missing dependencies.pull/223/head
2 changed files with 13 additions and 5 deletions
@ -0,0 +1,7 @@
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<aspectj> |
||||
<aspects> |
||||
<aspect name="org.springframework.beans.factory.aspectj.AnnotationBeanConfigurerAspect" /> |
||||
<aspect name="org.springframework.data.mongodb.crossstore.MongoDocumentBacking" /> |
||||
</aspects> |
||||
</aspectj> |
||||
Loading…
Reference in new issue