线程池代码优化

master
RuoYi 6 years ago committed by Limy
parent 7c5045201d
commit 09b6fc9415

@ -10,8 +10,6 @@
> 推荐使用阿里云部署,通用云产品代金券 [点我领取](https://promotion.aliyun.com/ntms/yunparter/invite.html?userCode=brki8iof)
> 阿里云双12活动低至2折 [点我购买](https://m.aliyun.com/act/team1212?params=N.DTB4ZxQhX0#/)
## 内置功能
1. 用户管理:用户是系统操作者,该功能主要完成系统用户配置。

@ -0,0 +1,62 @@
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, workQueuePending,.
* 退.
* 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;
import java.util.TimerTask;
import java.util.concurrent.ScheduledThreadPoolExecutor;
import java.util.concurrent.TimeUnit;
import com.ruoyi.common.utils.Threads;
/**
*
@ -41,9 +42,11 @@ public class AsyncManager
executor.schedule(task, OPERATE_DELAY_TIME, TimeUnit.MILLISECONDS);
}
public void shutdown(long timeout, TimeUnit unit) throws Exception
/**
* 线
*/
public void shutdown()
{
executor.shutdown();
executor.awaitTermination(timeout, unit);
Threads.shutdownAndAwaitTermination(executor);
}
}

@ -6,13 +6,11 @@ import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import javax.annotation.PreDestroy;
import java.util.concurrent.TimeUnit;
/**
* ShutdownManager
* 退线
*
* @Auther: cj
* @Date: 2018/12/28
* @author cj
*/
@Component
public class ShutdownManager
@ -29,13 +27,16 @@ public class ShutdownManager
shutdownAsyncManager();
}
/**
* Seesion
*/
private void shutdownSpringSessionValidationScheduler()
{
if (springSessionValidationScheduler != null && springSessionValidationScheduler.isEnabled())
{
try
{
logger.info("关闭会话验证任务");
logger.info("====关闭会话验证任务====");
springSessionValidationScheduler.disableSessionValidation();
}
catch (Exception e)
@ -45,12 +46,15 @@ public class ShutdownManager
}
}
/**
*
*/
private void shutdownAsyncManager()
{
try
{
logger.info("关闭后台任务线程池");
AsyncManager.me().shutdown(10, TimeUnit.SECONDS);
logger.info("====关闭后台任务任务线程池====");
AsyncManager.me().shutdown();
}
catch (Exception e)
{

@ -8,6 +8,7 @@ import org.apache.shiro.session.mgt.SessionValidationScheduler;
import org.apache.shiro.session.mgt.ValidatingSessionManager;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.ruoyi.common.utils.Threads;
/**
*
@ -136,15 +137,7 @@ public class SpringSessionValidationScheduler implements SessionValidationSchedu
if (this.enabled)
{
executorService.shutdown();
try
{
executorService.awaitTermination(10, TimeUnit.SECONDS);
}
catch (InterruptedException e)
{
log.error(e.getMessage(), e);
}
Threads.shutdownAndAwaitTermination(executorService);
}
this.enabled = false;
}

Loading…
Cancel
Save