|
@@ -63,6 +63,7 @@ public class DruidConfig
|
|
*/
|
|
*/
|
|
@SuppressWarnings({ "rawtypes", "unchecked" })
|
|
@SuppressWarnings({ "rawtypes", "unchecked" })
|
|
@Bean
|
|
@Bean
|
|
|
|
+ @ConditionalOnProperty(name = "spring.datasource.druid.statViewServlet.enabled", havingValue = "true")
|
|
public FilterRegistrationBean removeDruidFilterRegistrationBean(DruidStatProperties properties)
|
|
public FilterRegistrationBean removeDruidFilterRegistrationBean(DruidStatProperties properties)
|
|
{
|
|
{
|
|
// 获取web监控页面的参数
|
|
// 获取web监控页面的参数
|
|
@@ -74,6 +75,10 @@ public class DruidConfig
|
|
// 创建filter进行过滤
|
|
// 创建filter进行过滤
|
|
Filter filter = new Filter()
|
|
Filter filter = new Filter()
|
|
{
|
|
{
|
|
|
|
+ @Override
|
|
|
|
+ public void init(javax.servlet.FilterConfig filterConfig) throws ServletException
|
|
|
|
+ {
|
|
|
|
+ }
|
|
@Override
|
|
@Override
|
|
public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain)
|
|
public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain)
|
|
throws IOException, ServletException
|
|
throws IOException, ServletException
|
|
@@ -88,6 +93,10 @@ public class DruidConfig
|
|
text = text.replaceAll("powered.*?shrek.wang</a>", "");
|
|
text = text.replaceAll("powered.*?shrek.wang</a>", "");
|
|
response.getWriter().write(text);
|
|
response.getWriter().write(text);
|
|
}
|
|
}
|
|
|
|
+ @Override
|
|
|
|
+ public void destroy()
|
|
|
|
+ {
|
|
|
|
+ }
|
|
};
|
|
};
|
|
FilterRegistrationBean registrationBean = new FilterRegistrationBean();
|
|
FilterRegistrationBean registrationBean = new FilterRegistrationBean();
|
|
registrationBean.setFilter(filter);
|
|
registrationBean.setFilter(filter);
|