I found that i can't load in that way... why? I think ABCl is not prepared for that. Anyway... i solved the problem, and i created an example of deployment with ABCL.

https://github.com/digiorgi/abcl-deploy

(:

2016-01-29 20:35 GMT-03:00 Hernan Ezequiel Di Giorgi <hernan.digiorgi@gmail.com>:
The result of cl:compile, how can be loaded via java using .getResourceAsStream()?

I'm compiling all the dependencies of a proyect and generating a super abcl.jar with my project inside, in the root directory of the abcl.jar i have a "system.abcl", that can be loaded with cl:load only with it outside the jar. If i try to load if from the jar with the full path "jar:file:/path/abcl.jar!/system.abcl" the repl simply freezes, and do nothing (via java or repl).

The org.armedbear.lisp.load.load() throws an exception because don't load the .abcl.

The abcl is generated with (asdf:operate 'asdf:monolithic-compile-boundle-op system-name). I just can't use the .abcl when is inside the jar.

Any ideas??