|
@@ -129,7 +129,10 @@ public class DruidDBConfig {
|
|
|
ServletRegistrationBean reg = new ServletRegistrationBean();
|
|
|
reg.setServlet(new StatViewServlet());
|
|
|
reg.addUrlMappings("/druid/*");
|
|
|
- reg.addInitParameter("allow", ""); //白名单
|
|
|
+ reg.addInitParameter("allow", "127.0.0.1,localhost"); //白名单
|
|
|
+ reg.addInitParameter("loginUsername","admin");
|
|
|
+ reg.addInitParameter("loginPassword","adminThmm321");
|
|
|
+ reg.addInitParameter("resetEnable","false");
|
|
|
return reg;
|
|
|
}
|
|
|
|