0

I got the following error during the creation of a new Silk4J project in Eclipse.

interface org.springframework.aop.SpringProxy is not visible from class loader

Screenshot of the error

Community
  • 1
  • 1
Shik
  • 27
  • 7

1 Answers1

0

Looks like your indirect dependencies are not imported you can add those explicitly in your POM and try again

<Import-Package>
    ...
    org.aopalliance.aop,
    org.springframework.aop,
    org.springframework.aop.framework,
    ...
</Import-Package>
Thomas Weller
  • 55,411
  • 20
  • 125
  • 222
Rupesh
  • 378
  • 7
  • 21