mirror of
https://gitee.com/nutz/nutzboot.git
synced 2024-11-30 10:48:36 +08:00
add: 添加一个配置项,可以完全关闭druid的monitor页面
This commit is contained in:
parent
19756e93a0
commit
a13e476f72
@ -23,6 +23,9 @@ public class DruidWebStatServletStarter implements WebServletFace {
|
||||
|
||||
protected static final String PRE = "druid.web.servlet.";
|
||||
|
||||
@PropDoc(group="druid", type="boolean", defaultValue="true", value="是否启动monitor页面")
|
||||
public static final String PROP_ENABLE = PRE + "enable";
|
||||
|
||||
@PropDoc(group="druid", type="boolean", defaultValue="true", value="是否允许重置统计结果")
|
||||
public static final String PROP_RESET_ENABLE = PRE + StatViewServlet.PARAM_NAME_RESET_ENABLE;
|
||||
|
||||
@ -80,6 +83,10 @@ public class DruidWebStatServletStarter implements WebServletFace {
|
||||
public Servlet getServlet() {
|
||||
if (!DataSourceStarter.isDruid(conf))
|
||||
return null;
|
||||
if (!conf.getBoolean(PROP_ENABLE, true)) {
|
||||
log.debug("druid monitor enable=false, disable it");
|
||||
return null;
|
||||
}
|
||||
return new StatViewServlet();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user