Is there anything like VirtualEnv for Java?

前端 未结 8 1854
天命终不由人
天命终不由人 2021-01-03 17:16

Is there anything similar to Python virtualenv for Java or JVM Languages?

8条回答
  •  醉酒成梦
    2021-01-03 18:07

    I'm confused by the assertion that "Java doesn't have the concept of a 'system-wide installed' library". What would you call the jar files in $JAVA_HOME/jre/lib and $JAVA_HOME/jre/lib/ext?

    Regardless of whether or not Java "needs" a tool like virtualenv, it seems that something that allowed you to quickly switch between different Java environments (e.g. Java 6 with such-and-such security extensions, Java 7, etc.) would be handy - even if all it was actually doing under the covers was manipulating the PATH, JAVA_HOME, and CLASSPATH env variables.

提交回复
热议问题