Commit f04c1fed by RuoYi

线程池代码优化

parent 383d0821
...@@ -10,8 +10,6 @@ ...@@ -10,8 +10,6 @@
> 推荐使用阿里云部署,通用云产品代金券 :[点我领取](https://promotion.aliyun.com/ntms/yunparter/invite.html?userCode=brki8iof) > 推荐使用阿里云部署,通用云产品代金券 :[点我领取](https://promotion.aliyun.com/ntms/yunparter/invite.html?userCode=brki8iof)
> 阿里云双12活动低至2折 :[点我购买](https://m.aliyun.com/act/team1212?params=N.DTB4ZxQhX0#/)
## 内置功能 ## 内置功能
1. 用户管理:用户是系统操作者,该功能主要完成系统用户配置。 1. 用户管理:用户是系统操作者,该功能主要完成系统用户配置。
......
package com.ruoyi.common.utils;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.TimeUnit;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* 线程相关工具类.
*
* @author ruoyi
*/
public class Threads
{
private static final Logger logger = LoggerFactory.getLogger("sys-user");
/**
* sleep等待,单位为毫秒
*/
public static void sleep(long milliseconds)
{
try
{
Thread.sleep(milliseconds);
}
catch (InterruptedException e)
{
return;
}
}
/**
* 停止线程池
* 先使用shutdown, 停止接收新任务并尝试完成所有已存在任务.
* 如果超时, 则调用shutdownNow, 取消在workQueue中Pending的任务,并中断所有阻塞函数.
* 如果仍人超時,則強制退出.
* 另对在shutdown时线程本身被调用中断做了处理.
*/
public static void shutdownAndAwaitTermination(ExecutorService pool)
{
if (pool != null && !pool.isShutdown())
{
pool.shutdown();
try
{
if (!pool.awaitTermination(120, TimeUnit.SECONDS))
{
pool.shutdownNow();
if (!pool.awaitTermination(120, TimeUnit.SECONDS))
{
logger.info("Pool did not terminate");
}
}
}
catch (InterruptedException ie)
{
pool.shutdownNow();
Thread.currentThread().interrupt();
}
}
}
}
...@@ -3,6 +3,7 @@ package com.ruoyi.framework.manager; ...@@ -3,6 +3,7 @@ package com.ruoyi.framework.manager;
import java.util.TimerTask; import java.util.TimerTask;
import java.util.concurrent.ScheduledThreadPoolExecutor; import java.util.concurrent.ScheduledThreadPoolExecutor;
import java.util.concurrent.TimeUnit; import java.util.concurrent.TimeUnit;
import com.ruoyi.common.utils.Threads;
/** /**
* 异步任务管理器 * 异步任务管理器
...@@ -41,9 +42,11 @@ public class AsyncManager ...@@ -41,9 +42,11 @@ public class AsyncManager
executor.schedule(task, OPERATE_DELAY_TIME, TimeUnit.MILLISECONDS); executor.schedule(task, OPERATE_DELAY_TIME, TimeUnit.MILLISECONDS);
} }
public void shutdown(long timeout, TimeUnit unit) throws Exception /**
* 停止任务线程池
*/
public void shutdown()
{ {
executor.shutdown(); Threads.shutdownAndAwaitTermination(executor);
executor.awaitTermination(timeout, unit);
} }
} }
...@@ -6,13 +6,11 @@ import org.slf4j.LoggerFactory; ...@@ -6,13 +6,11 @@ import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component; import org.springframework.stereotype.Component;
import javax.annotation.PreDestroy; import javax.annotation.PreDestroy;
import java.util.concurrent.TimeUnit;
/** /**
* ShutdownManager 类 * 确保应用退出时能关闭后台线程
* *
* @Auther: cj * @author cj
* @Date: 2018/12/28
*/ */
@Component @Component
public class ShutdownManager public class ShutdownManager
...@@ -29,13 +27,16 @@ public class ShutdownManager ...@@ -29,13 +27,16 @@ public class ShutdownManager
shutdownAsyncManager(); shutdownAsyncManager();
} }
/**
* 停止Seesion会话检查
*/
private void shutdownSpringSessionValidationScheduler() private void shutdownSpringSessionValidationScheduler()
{ {
if (springSessionValidationScheduler != null && springSessionValidationScheduler.isEnabled()) if (springSessionValidationScheduler != null && springSessionValidationScheduler.isEnabled())
{ {
try try
{ {
logger.info("关闭会话验证任务"); logger.info("====关闭会话验证任务====");
springSessionValidationScheduler.disableSessionValidation(); springSessionValidationScheduler.disableSessionValidation();
} }
catch (Exception e) catch (Exception e)
...@@ -45,12 +46,15 @@ public class ShutdownManager ...@@ -45,12 +46,15 @@ public class ShutdownManager
} }
} }
/**
* 停止异步执行任务
*/
private void shutdownAsyncManager() private void shutdownAsyncManager()
{ {
try try
{ {
logger.info("关闭后台任务线程池"); logger.info("====关闭后台任务任务线程池====");
AsyncManager.me().shutdown(10, TimeUnit.SECONDS); AsyncManager.me().shutdown();
} }
catch (Exception e) catch (Exception e)
{ {
......
...@@ -8,6 +8,7 @@ import org.apache.shiro.session.mgt.SessionValidationScheduler; ...@@ -8,6 +8,7 @@ import org.apache.shiro.session.mgt.SessionValidationScheduler;
import org.apache.shiro.session.mgt.ValidatingSessionManager; import org.apache.shiro.session.mgt.ValidatingSessionManager;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;
import com.ruoyi.common.utils.Threads;
/** /**
* 自定义任务调度器完成 * 自定义任务调度器完成
...@@ -136,15 +137,7 @@ public class SpringSessionValidationScheduler implements SessionValidationSchedu ...@@ -136,15 +137,7 @@ public class SpringSessionValidationScheduler implements SessionValidationSchedu
if (this.enabled) if (this.enabled)
{ {
executorService.shutdown(); Threads.shutdownAndAwaitTermination(executorService);
try
{
executorService.awaitTermination(10, TimeUnit.SECONDS);
}
catch (InterruptedException e)
{
log.error(e.getMessage(), e);
}
} }
this.enabled = false; this.enabled = false;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment