使用JavaMelody实现tomcat监控,简单实用
解决方法:
我使用的是javamelody-core-1.73.1.jar,jrobin-1.5.14.jar,tomcat7
1.下载jrobin和javamelody-core的jar包并复制web项目的lib下:
http://www.yayihouse.com/yayishuwu/chapter/1611
2.web.xml中添加:
<!-- java melody 监听器 -->
<listener>
<listener-class>net.bull.javamelody.SessionListener</listener-class>
</listener>
<!-- java melody 过滤器 -->
<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>
3.浏览器访问:http://localhost:8080/项目名/monitoring