|  |  |  | 
|---|
|  |  |  | package com.dy.common.mw.support; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public class SupportUnitConfigVo { | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public boolean enableThreadPool ; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public boolean enableShortThreadPool ; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public boolean enableLongThreadPool ; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //短任务线程池 | 
|---|
|  |  |  | public int short_maxThread ; | 
|---|
|  |  |  | 
|---|
|  |  |  | public int long_minThread ; | 
|---|
|  |  |  | public long long_freeTimeout; | 
|---|
|  |  |  | public long long_busyTimeout ; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //单个Ssdb接连池配置文件 | 
|---|
|  |  |  | public String singleSsdbPoolXmlFile ; | 
|---|
|  |  |  | //多个Ssdb接连池配置文件 | 
|---|
|  |  |  | public String multiSsdbPoolXmlFile ; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //Redis集群配置文件 | 
|---|
|  |  |  | public String redisClusterXmlFile ; | 
|---|
|  |  |  | //单个Redis接连池配置文件 | 
|---|
|  |  |  | public String singleRedisPoolXmlFile ; | 
|---|
|  |  |  | //多个Redis接连池配置文件 | 
|---|
|  |  |  | public String multiRedisPoolXmlFile ; | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public Boolean showStartInfo; //是否在控制台上显示信息 | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|