您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關基于javamelody如何監控springboot項目過程的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
1. 相關鏈接
官方文檔 https://github.com/javamelody/javamelody/wiki/UserGuide
下載地址https://github.com/javamelody/javamelody/releases
2. 基礎集成
1.pom中加入
<!-- https://mvnrepository.com/artifact/net.bull.javamelody/javamelody-core --> <dependency> <groupId>net.bull.javamelody</groupId> <artifactId>javamelody-core</artifactId> <version>1.79.0</version> </dependency>
2.springboot啟動文件中加入
public class App { public static void main(String[] args) { SpringApplication.run(App.class, args); } /** * 配置javamelody監控 spring boot 會按照order值的大小,從小到大的順序來依次過濾 */ @Bean @Order(Integer.MAX_VALUE - 1) public FilterRegistrationBean monitoringFilter() { FilterRegistrationBean registration = new FilterRegistrationBean(); registration.setFilter(new MonitoringFilter()); registration.addUrlPatterns("/*"); registration.setName("monitoring"); return registration; } /** * 配置javamelody監聽器sessionListener */ @Bean public ServletListenerRegistrationBean<SessionListener> servletListenerRegistrationBean() { ServletListenerRegistrationBean<SessionListener> slrBean = new ServletListenerRegistrationBean<SessionListener>(); slrBean.setListener(new SessionListener()); return slrBean; }}
3,現在可以部署程序啟動服務器,在瀏覽器打開http://<host>/<context>/monitoring。<host>:為你的主機名+端口地址,<context>:為你的應用配置地址。應該可以看到如下界面:
3. Spring方法級監控
前提是使用monitoring-spring.xml文件(不做修改),然后在需要監控的方法上使用@MonitoredWithSpring注解即可。
感謝各位的閱讀!關于“基于javamelody如何監控springboot項目過程”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。