WEB项目监控工具javameloday

1:首先需要下载两个jar包,分别是javamelody-1.16.0.jar,jrobin-1.5.9.1.jar

javamelody-1.16.0.jar下载地址是:http://download.csdn.net/detail/lifuxiangcaohui/7036747
jrobin-1.5.9.1.jar下载地址:http://download.csdn.net/detail/lifuxiangcaohui/7036761
2:将刚刚得到的两个jar包放到自己项目的lib目录下。
3:在web.xml配置文件中进行配置,配置内容如下:
<filter>
           <filter-name>monitoring</filter-name>

 
  

           <filter-class>net.bull.javamelody.MonitoringFilter</filter-class>       

</filter>      

 <filter-mapping>                

<filter-name>monitoring</filter-name>               

 <url-pattern>/*</url-pattern>        

</filter-mapping>        

<listener>                

<listener-class>net.bull.javamelody.SessionListener</listener-class>        

</listener>

4:重新启动项目,打开连接:http://localhost:8080/monitoring(其中http://localhost:8080/是项目的根目录),即可看到下图

你可能感兴趣的:(WEB项目监控工具javameloday)