Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
RuoYi Vue
Commits
0fc266fe
Commit
0fc266fe
authored
Aug 24, 2021
by
RuoYi
Browse files
定时任务对检查异常进行事务回滚
parent
d1ef19f0
Changes
1
Hide whitespace changes
Inline
Side-by-side
ruoyi-quartz/src/main/java/com/ruoyi/quartz/service/impl/SysJobServiceImpl.java
View file @
0fc266fe
...
...
@@ -75,7 +75,7 @@ public class SysJobServiceImpl implements ISysJobService
* @param job 调度信息
*/
@Override
@Transactional
@Transactional
(
rollbackFor
=
Exception
.
class
)
public
int
pauseJob
(
SysJob
job
)
throws
SchedulerException
{
Long
jobId
=
job
.
getJobId
();
...
...
@@ -95,7 +95,7 @@ public class SysJobServiceImpl implements ISysJobService
* @param job 调度信息
*/
@Override
@Transactional
@Transactional
(
rollbackFor
=
Exception
.
class
)
public
int
resumeJob
(
SysJob
job
)
throws
SchedulerException
{
Long
jobId
=
job
.
getJobId
();
...
...
@@ -115,7 +115,7 @@ public class SysJobServiceImpl implements ISysJobService
* @param job 调度信息
*/
@Override
@Transactional
@Transactional
(
rollbackFor
=
Exception
.
class
)
public
int
deleteJob
(
SysJob
job
)
throws
SchedulerException
{
Long
jobId
=
job
.
getJobId
();
...
...
@@ -135,7 +135,7 @@ public class SysJobServiceImpl implements ISysJobService
* @return 结果
*/
@Override
@Transactional
@Transactional
(
rollbackFor
=
Exception
.
class
)
public
void
deleteJobByIds
(
Long
[]
jobIds
)
throws
SchedulerException
{
for
(
Long
jobId
:
jobIds
)
...
...
@@ -151,7 +151,7 @@ public class SysJobServiceImpl implements ISysJobService
* @param job 调度信息
*/
@Override
@Transactional
@Transactional
(
rollbackFor
=
Exception
.
class
)
public
int
changeStatus
(
SysJob
job
)
throws
SchedulerException
{
int
rows
=
0
;
...
...
@@ -173,7 +173,7 @@ public class SysJobServiceImpl implements ISysJobService
* @param job 调度信息
*/
@Override
@Transactional
@Transactional
(
rollbackFor
=
Exception
.
class
)
public
void
run
(
SysJob
job
)
throws
SchedulerException
{
Long
jobId
=
job
.
getJobId
();
...
...
@@ -191,7 +191,7 @@ public class SysJobServiceImpl implements ISysJobService
* @param job 调度信息 调度信息
*/
@Override
@Transactional
@Transactional
(
rollbackFor
=
Exception
.
class
)
public
int
insertJob
(
SysJob
job
)
throws
SchedulerException
,
TaskException
{
job
.
setStatus
(
ScheduleConstants
.
Status
.
PAUSE
.
getValue
());
...
...
@@ -209,7 +209,7 @@ public class SysJobServiceImpl implements ISysJobService
* @param job 调度信息
*/
@Override
@Transactional
@Transactional
(
rollbackFor
=
Exception
.
class
)
public
int
updateJob
(
SysJob
job
)
throws
SchedulerException
,
TaskException
{
SysJob
properties
=
selectJobById
(
job
.
getJobId
());
...
...
Write
Preview
Supports
Markdown
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