When i am trying to enable Load time weaving in a web bundle an exception is thrown, -> ClassLoader 'BundleWebAppClassLoader' is not instrumentable
In the programming guide, it was mentioned that - All web bundle ClassLoaders are instrumentable by Spring’s load-time weaving infrastructure.
I just looked at the KernelLoadTimeWeaver class code and it handles only InstrumentableClassLoader and BundleDelegatingClassLoader but BundleWebAppClassLoader does not fall under any of them. Hence the error
Any pointers about this one ?


