Hello, I have a project that encrypts the class, and I want to decrypt the class by customizing the classloader. I don't know how to deal with it in spring boot. Or, spring boot does not support global loading of custom classloaders.
Comment From: bclozel
The SpringApplication
class provides a way to set a custom ResourceLoader
. You could set your own DefaultResourceLoader
backed by your custom ClassLoader
there.
For further questions, please use StackOverflow. Thanks!