spring asm with custom classloader


spring asm with custom classloader

Q:
Our app is over SSH,we add a custom classloader to keep class safe, but after encrypted the class file , the app can't startup. It seems spring use asm to load the class file ,and as of the file was encryted , it can't load it successfully. Is there any way to make it? Or how can i use spring without asm?

A:   
Spring asm do not load class but read it. does your app have any scan settings like <context:scan> – farmer1992 Oct 17 '12 at 18:04
   
A:
Thank you ,I've resolved it.Spring asm read the class file, and if you want to encrypt you class,you need to decrypt in asm class – husanhong Dec 24 '12 at 5:19

 

来自于:

http://stackoverflow.com/questions/12310839/spring-asm-with-custom-classloader

你可能感兴趣的:(ClassLoader)