Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
finance-manage
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
finance-oa
finance-manage
Commits
c105a63c
Commit
c105a63c
authored
May 31, 2021
by
RuoYi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加bat脚本执行应用
parent
af9cfb40
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
170 additions
and
86 deletions
+170
-86
ruoyi-common/src/main/java/com/ruoyi/common/core/controller/BaseController.java
...java/com/ruoyi/common/core/controller/BaseController.java
+13
-0
ry.bat
ry.bat
+67
-0
ry.sh
ry.sh
+90
-86
No files found.
ruoyi-common/src/main/java/com/ruoyi/common/core/controller/BaseController.java
View file @
c105a63c
...
...
@@ -59,6 +59,19 @@ public class BaseController
}
}
/**
* 设置请求排序数据
*/
protected
void
startOrderBy
()
{
PageDomain
pageDomain
=
TableSupport
.
buildPageRequest
();
if
(
StringUtils
.
isNotEmpty
(
pageDomain
.
getOrderBy
()))
{
String
orderBy
=
SqlUtil
.
escapeOrderBySql
(
pageDomain
.
getOrderBy
());
PageHelper
.
orderBy
(
orderBy
);
}
}
/**
* 响应请求分页数据
*/
...
...
ry.bat
0 → 100644
View file @
c105a63c
@echo
off
rem jar平级目录
set
AppName
=
ruoyi
-admin
.jar
rem JVM参数
set
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"
ECHO
.
ECHO
.
[
1
]
启动
%AppName%
ECHO
.
[
2
]
关闭
%AppName%
ECHO
.
[
3
]
重启
%AppName%
ECHO
.
[
4
]
启动状态
%AppName%
ECHO
.
[
5
]
退 出
ECHO
.
ECHO
.请输入选择项目的序号:
set
/p
ID
=
IF
"
%id%
"
==
"1"
GOTO
start
IF
"
%id%
"
==
"2"
GOTO
stop
IF
"
%id%
"
==
"3"
GOTO
restart
IF
"
%id%
"
==
"4"
GOTO
status
IF
"
%id%
"
==
"5"
EXIT
PAUSE
:start
for
/f
"usebackq tokens=1-2"
%%a
in
(
`jps -l
^|
findstr
%AppName%
`
)
do
(
set
pid
=
%%a
set
image_name
=
%%b
)
if
defined
pid
(
echo
%%is
running
PAUSE
)
start
javaw
-jar
%JAVA_OPTS%
ruoyi
-admin
.jar
echo
starting
……
echo
Start
%AppName%
success
...
goto
:eof
rem 函数stop通过jps命令查找pid并结束进程
:stop
for
/f
"usebackq tokens=1-2"
%%a
in
(
`jps -l
^|
findstr
%AppName%
`
)
do
(
set
pid
=
%%a
set
image_name
=
%%b
)
if
not
defined
pid
(
echo
process
%AppName%
does
not
exists
)
else
(
echo
prepare
to
kill
%image_name%
echo
start
kill
%pid%
...
rem 根据进程ID,kill进程
taskkill
/f /pid
%pid%
)
goto
:eof
:restart
call
:stop
call
:start
goto
:eof
:status
for
/f
"usebackq tokens=1-2"
%%a
in
(
`jps -l
^|
findstr
%AppName%
`
)
do
(
set
pid
=
%%a
set
image_name
=
%%b
)
if
not
defined
pid
(
echo
process
%AppName%
is
dead
)
else
(
echo
%image_name%
is
running
)
goto
:eof
\ No newline at end of file
ry.sh
View file @
c105a63c
#!/bin/bash
AppName
=
ruoyi-admin.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
#!/bin/sh
# author ruoyi
# ./ry.sh start 启动
# ./ry.sh stop 停止
# ./ry.sh restart 重启
# ./ry.sh start 状态
AppName
=
ruoyi-admin.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