Is there anything like VirtualEnv for Java?

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

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

8条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-01-03 18:16

    I have also been looking for a similar solution to simplify switching context between projects that use different Maven versions/settings and/or Java SDKs without having to modify M2_HOME and JAVA_HOME settings every time.

    To this end, I developed a solution that helps execute mvn commands with the appropriate configuration based on per-project settings (stored in a .mvn folder).

    See: https://github.com/AlejandroRivera/maven-env

    Be aware that this only helps if you're using Maven to build and/or run your project.

提交回复
热议问题