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
本文讨论了Spring使用ASM进行类文件读取时遇到的问题,特别是当类文件经过加密后,应用无法正常启动的情况。文章给出了解决方案,即如果需要加密类文件,则必须在ASM层面进行解密。

4874

被折叠的 条评论
为什么被折叠?



