OESE-23 Push arguments from command line into java process

master
David BRASSELY 2014-03-27 12:03:37 +01:00
parent 3e2570e3d2
commit 2402e59516
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
:: ***************************************************************
:: ***************************************************************
:: The contents of this file are subject to the terms
:: of the Common Development and Distribution License
:: (the "License"). You may not use this file except
@ -71,7 +71,7 @@ for /r %%x in (%BOOSTRAP_PATTERN%) do (SET filename=%%x)
if %filename%=="" Goto notfind
:: Start OpenESB in a new Dos window
%JAVA_HOME%\bin\java -Djava.util.logging.config.file=%OPENESB_HOME%/config/logger.properties -Djava.util.logging.manager=net.openesb.standalone.logger.LogManager -Djavax.net.ssl.keyStore=%OPENESB_HOME%/keystore.jks -Djavax.net.ssl.trustStore=%OPENESB_HOME%/cacerts.jks -Djavax.net.ssl.keyStorePassword=changeit -Djmx.invoke.getters=true -Dopenesb.home=%OPENESB_HOME% -jar %filename%
%JAVA_HOME%\bin\java -Djava.util.logging.config.file=%OPENESB_HOME%/config/logger.properties -Djava.util.logging.manager=net.openesb.standalone.logger.LogManager -Djavax.net.ssl.keyStore=%OPENESB_HOME%/keystore.jks -Djavax.net.ssl.trustStore=%OPENESB_HOME%/cacerts.jks -Djavax.net.ssl.keyStorePassword=changeit -Djmx.invoke.getters=true -Dopenesb.home=%OPENESB_HOME% -jar %filename% %*
GOTO endbatch