mvn tomcat7:run - 如何添加属性

时间:2013-12-12 09:51:33

标签: maven maven-tomcat-plugin

如何添加jvm属性?

例如我想添加以下内容

” -Dcom.sun.management.jmxremote.port = 8004 -Dcom.sun.management.jmxremote.authenticate = false -Dcom.sun.management.jmxremote.ssl = false “

1 个答案:

答案 0 :(得分:0)

尝试在MAVEN_OPTS环境变量上设置JVM属性,即在Linux上

export MAVEN_OPTS="-Dcom.sun.management.jmxremote.port=8004 -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false"

或在Windows上创建一个名为MAVEN_OPTS且JVM属性为值的新环境变量。

如果您在Windows上从命令行运行maven,您也可以使用命令暂时设置MAVEN_OPTS

set MAVEN_OPTS="-Dcom.sun.management.jmxremote.port=8004 -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false"