IceFoxs commented on a change in pull request #2816: URL: https://github.com/apache/incubator-shenyu/pull/2816#discussion_r793234159
########## File path: shenyu-dist/shenyu-bootstrap-dist/src/main/resources/bin/start.bat ########## @@ -1,46 +1,58 @@ -@rem -@rem Licensed to the Apache Software Foundation (ASF) under one or more -@rem contributor license agreements. See the NOTICE file distributed with -@rem this work for additional information regarding copyright ownership. -@rem The ASF licenses this file to You under the Apache License, Version 2.0 -@rem (the "License"); you may not use this file except in compliance with -@rem the License. You may obtain a copy of the License at -@rem -@rem http://www.apache.org/licenses/LICENSE-2.0 -@rem -@rem Unless required by applicable law or agreed to in writing, software -@rem distributed under the License is distributed on an "AS IS" BASIS, -@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -@rem See the License for the specific language governing permissions and -@rem limitations under the License. -@rem - -@echo off & setlocal enabledelayedexpansion - -cd %~dp0 - -set LOG_HOME=%~dp0/../logs - -set SERVER_NAME=ShenYu-Bootstrap - -set CLASS_PATH=".;..\conf;..\lib\*;..\ext-lib\*" - -set JAVA_OPTS=-server -Xmx2g -Xms2g -Xmn1g -Xss256k -XX:+DisableExplicitGC -XX:LargePageSizeInBytes=128m -for /f tokens^=2-5^ delims^=^" %%j in ('java -fullversion 2^>^&1') do set "version=%%j" -echo %version%| findstr "^1.8" >nul && ( - set "JAVA_OPTS=%JAVA_OPTS% -XX:+UseConcMarkSweepGC -XX:+CMSParallelRemarkEnabled -XX:+UseFastAccessorMethods -XX:+UseCMSInitiatingOccupancyOnly -XX:CMSInitiatingOccupancyFraction=70" -) -echo %version%| findstr "^11" >nul && ( - set "JAVA_OPTS=%JAVA_OPTS% -) -echo %version%| findstr "^17" >nul && ( - set "JAVA_OPTS=%JAVA_OPTS% -) - -set MAIN_CLASS=org.apache.shenyu.bootstrap.ShenyuBootstrapApplication - -echo Starting the %SERVER_NAME% ... - -java %JAVA_OPTS% -Dfile.encoding=UTF-8 -Dlog.home=%LOG_HOME% -classpath %CLASS_PATH% %MAIN_CLASS% - -pause +@rem +@rem Licensed to the Apache Software Foundation (ASF) under one or more +@rem contributor license agreements. See the NOTICE file distributed with +@rem this work for additional information regarding copyright ownership. +@rem The ASF licenses this file to You under the Apache License, Version 2.0 +@rem (the "License"); you may not use this file except in compliance with +@rem the License. You may obtain a copy of the License at +@rem +@rem http://www.apache.org/licenses/LICENSE-2.0 +@rem +@rem Unless required by applicable law or agreed to in writing, software +@rem distributed under the License is distributed on an "AS IS" BASIS, +@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +@rem See the License for the specific language governing permissions and +@rem limitations under the License. +@rem Review comment: I edit this file in windows,copy to other pc submit file,git identify all file midified.I resubmit it. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
