Classpath including JAR within a JAR

前端 未结 13 1580
自闭症患者
自闭症患者 2020-11-22 02:21

Is it possible to specify a Java classpath that includes a JAR file contained within another JAR file?

13条回答
  •  Happy的楠姐
    2020-11-22 02:49

    Not without writing your own class loader. You can add jars to the jar's classpath, but they must be co-located, not contained in the main jar.

提交回复
热议问题