forked from ningyu1/venus-bus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjvm.properties
36 lines (18 loc) · 868 Bytes
/
jvm.properties
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# app name
APP_NAME=VenusBus
# app version
APP_VERSION=3.2.0
# project output path ${project.output}
APP_OUTPUT_PATH=$PROJECT_HOME/logs
# application process id, default path=${project.home}/${APP_NAME}.pid
#APP_PID_PATH=/temp/logs/$APP_NAME
# system out or system error redirect to file
APP_CONSOLE_LOG=$APP_OUTPUT_PATH/console.log
# application option parameters
APP_OPTIONS="-DmyParam=value1 -DmyParam2=value2"
# application arguments
#APP_ARGS="args0 "
# JVM Parameter
JVM_OPTIONS="-server -Xms1024m -Xmx1024m -Xss256k -XX:PermSize=64m -XX:MaxPermSize=128m -Xdebug -Xrunjdwp:server=y,transport=dt_socket,address=4000,suspend=n -XX:+PrintGCDetails -XX:+PrintGCTimeStamps -XX:+PrintGCApplicationConcurrentTime -XX:+PrintGCApplicationStoppedTime -XX:+PrintHeapAtGC -Xloggc:$APP_OUTPUT_PATH/heap_gc.txt"
# ignore system signals
IGNORE_SIGNALS=1,2