From: magicalne <mag...@gm...> - 2016-12-29 07:13:53
|
Hi all, I have been through this issue for almost 2 days. I think I have figured it out. I use jsr223(groovy, jython) in my spring boot web project. I can execute groovy script, but not jython script. It looks like jython script want to import some modules from "Lib". But it cannot locate the right path to the "Lib". I think jython is a little guilty on this issue. The most simple way to get it work is to use : *springBoot { requiresUnpack = ['org.jruby:jruby-complete'] }* You can find it in spring boot doc: http://docs.spring.io/spring-boot/docs/current/reference/html/howto-build.html#howto-extract-specific-libraries-when-an-executable-jar-runs <http://docs.spring.io/spring-boot/docs/current/reference/html/howto-build.html#howto-extract-specific-libraries-when-an-executable-jar-runs> And it explains how it works. -- View this message in context: http://python.6.x6.nabble.com/Re-ImportError-No-module-named-re-tp5194446p5206030.html Sent from the jython-users mailing list archive at Nabble.com. |