1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.qxueyou.scc.web;
|
| import javax.servlet.annotation.WebServlet;
|
| import com.alibaba.druid.support.http.StatViewServlet;
|
|
| @WebServlet(name = "druidServlet",urlPatterns = "/druid/*" )
| public class DruidViewServlet extends StatViewServlet {
|
| /**
| *
| */
| private static final long serialVersionUID = 1L;
|
| }
|
|