Creating one jar file that for execution from Java/Clojure

前端 未结 2 715
太阳男子
太阳男子 2021-01-15 12:19

I\'d like to create one jar file to execute that is implemented with java and clojure. This is the step that I took.

Making my java code call clojure code

2条回答
  •  情话喂你
    2021-01-15 13:01

    If you want to make an all-inclusive jar, use tools like:

    • Jar Jar Links
    • one-JAR™

    If you specifically want to package jar files, you need a custom classloader, like:

    • JarClassLoader

    That said, I'd consider Dao Wen's suggestion, unless you have a specific need it cannot meet.

提交回复
热议问题