Is there anything like VirtualEnv for Java?

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

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

8条回答
  •  悲&欢浪女
    2021-01-03 17:56

    Build tools like Ant, Maven, and gradle are the the closest thing to pip or easy_install.

    The concept of virtualenv is done by the classpath. So there is no real need of virtualenv for Java

提交回复
热议问题