Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
F
fgqyxxlr
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
yaru
fgqyxxlr
Commits
33834188
Commit
33834188
authored
Nov 15, 2018
by
RuoYi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增打包文件
parent
3a44c4e7
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
99 additions
and
2 deletions
+99
-2
README.md
+0
-2
package.bat
+13
-0
ry.sh
+86
-0
No files found.
README.md
View file @
33834188
...
...
@@ -20,8 +20,6 @@ http://webapplayers.com/inspinia_admin-v2.7.1
> 推荐使用阿里云部署,通用云产品代金券 :[点我领取](https://promotion.aliyun.com/ntms/yunparter/invite.html?userCode=brki8iof)
> 阿里云双11活动1折团 :[点我拼团](https://m.aliyun.com/act/team1111/#/share?params=N.a4QehSDJLC.brki8iof)
## 内置功能
1.
用户管理:用户是系统操作者,该功能主要完成系统用户配置。
...
...
package.bat
0 → 100644
View file @
33834188
@echo off
echo.
echo [信息] 打包工程,生成jar包文件。
echo.
pause
echo.
cd %~dp0
call mvn clean package -Dmaven.test.skip=true
pause
\ No newline at end of file
ry.sh
0 → 100644
View file @
33834188
#!/bin/bash
AppName
=
RuoYi.jar
#JVM参数
JVM_OPTS
=
"-Dname=
$AppName
-Duser.timezone=Asia/Shanghai -Xms512M -Xmx512M -XX:PermSize=256M -XX:MaxPermSize=512M -XX:+HeapDumpOnOutOfMemoryError -XX:+PrintGCDateStamps -XX:+PrintGCDetails -XX:NewRatio=1 -XX:SurvivorRatio=30 -XX:+UseParallelGC -XX:+UseParallelOldGC"
APP_HOME
=
`
pwd
`
LOG_PATH
=
$APP_HOME
/logs/
$AppName
.log
if
[
"
$1
"
=
""
]
;
then
echo
-e
"
\0
33[0;31m 未输入操作名
\0
33[0m
\0
33[0;34m {start|stop|restart|status}
\0
33[0m"
exit
1
fi
if
[
"
$AppName
"
=
""
]
;
then
echo
-e
"
\0
33[0;31m 未输入应用名
\0
33[0m"
exit
1
fi
function
start
()
{
PID
=
`
ps
-ef
|grep java|grep
$AppName
|grep
-v
grep
|awk
'{print $2}'
`
if
[
x
"
$PID
"
!=
x
""
]
;
then
echo
"
$AppName
is running..."
else
nohup java
-jar
$JVM_OPTS
target/
$AppName
>
/dev/null 2>&1 &
echo
"Start
$AppName
success..."
fi
}
function
stop
()
{
echo
"Stop
$AppName
"
PID
=
""
query
(){
PID
=
`
ps
-ef
|grep java|grep
$AppName
|grep
-v
grep
|awk
'{print $2}'
`
}
query
if
[
x
"
$PID
"
!=
x
""
]
;
then
kill
-TERM
$PID
echo
"
$AppName
(pid:
$PID
) exiting..."
while
[
x
"
$PID
"
!=
x
""
]
do
sleep 1
query
done
echo
"
$AppName
exited."
else
echo
"
$AppName
already stopped."
fi
}
function
restart
()
{
stop
sleep 2
start
}
function
status
()
{
PID
=
`
ps
-ef
|grep java|grep
$AppName
|grep
-v
grep
|wc
-l
`
if
[
$PID
!=
0
]
;
then
echo
"
$AppName
is running..."
else
echo
"
$AppName
is not running..."
fi
}
case
$1
in
start
)
start
;;
stop
)
stop
;;
restart
)
restart
;;
status
)
status
;;
*
)
esac
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment