@DeclareParents(value = "com.totemtec.start.Performance+", defaultImpl = JumpImpl.class)
In Spring boot application, cause below error when start
Caused by: org.aspectj.weaver.reflect.ReflectionWorld$ReflectionWorldException: warning can't determine implemented interfaces of missing type org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration$$Lambda$406.1350720002
[Xlint:cantFindType]
The below code run correct. ``` @DeclareParents(value = "com.totemtec.start.PerformanceImpl", defaultImpl = JumpImpl.class) ```` And without Spring Boot, The Spring application is OK.
Sample code:
https://github.com/totemtec/aop