startup.bat 1.0 KB

123456789101112131415161718192021222324252627282930
  1. @echo off
  2. if not exist "%JAVA_HOME%\bin\java.exe" echo Please set the JAVA_HOME variable in your environment, We need java(x64)! jdk8 or later is better! & EXIT /B 1
  3. set "JAVA=%JAVA_HOME%\bin\java.exe"
  4. setlocal enabledelayedexpansion
  5. set BASE_DIR=%~dp0
  6. rem added double quotation marks to avoid the issue caused by the folder names containing spaces.
  7. rem removed the last 5 chars(which means \bin\) to get the base DIR.
  8. set BASE_DIR="%BASE_DIR:~0,-5%"
  9. set DEFAULT_SEARCH_LOCATIONS="classpath:/,classpath:/config/,file:./,file:./config/"
  10. set CUSTOM_SEARCH_LOCATIONS=%DEFAULT_SEARCH_LOCATIONS%,file:%BASE_DIR%/conf/
  11. set SERVER=bankclear
  12. set "JAVA_OPT=%JAVA_OPT% -Xms1024m -Xmx1024m -Xmn512m"
  13. set "JAVA_OPT=%JAVA_OPT% -Dsystem.basedir=%BASE_DIR%"
  14. set "JAVA_OPT=%JAVA_OPT% -Dloader.path=%BASE_DIR%/plugins/health -jar %BASE_DIR%\target\%SERVER%.jar"
  15. set "JAVA_OPT=%JAVA_OPT% --spring.config.location=%CUSTOM_SEARCH_LOCATIONS%"
  16. set "JAVA_OPT=%JAVA_OPT% --logging.config=%BASE_DIR%/conf/log4j2.xml"
  17. call "%JAVA%" %JAVA_OPT% bankclear %*
  18. pause