zoukankan      html  css  js  c++  java
  • Fundebug后端Java异常监控插件更新至0.2.0,支持Spring及Maven

    摘要: 0.2.0支持监控Spring应用,并且支持使用Maven接入插件,请大家及时更新。

    支持监控Spring应用

    1. pom.xml配置fundebug-spring依赖

    <dependency>
        <groupId>com.fundebug</groupId>
        <artifactId>fundebug-spring</artifactId>
        <version>0.2.0</version>
    </dependency>
    

    2. 在项目中引入fundebug并配置apikey

    新增FundebugConfig.java

    import org.springframework.context.annotation.Bean;
    import org.springframework.context.annotation.Configuration;
    import org.springframework.context.annotation.Import;
    
    import com.fundebug.Fundebug;
    import com.fundebug.SpringConfig;
    
    @Configuration
    @Import(SpringConfig.class)
    public class FundebugConfig {
    	@Bean
    	public Fundebug getBean() {
    		return new Fundebug("apikey");
    	}
    }
    

    注意:获取apikey需要免费注册帐号并且创建项目

    可以参考Demo项目Fundebug/fundebug-spring-demo

    支持使用Maven接入插件

    Fundebug的Java异常监控插件fundebug-javafundebug-spring都发布到了Maven中央仓库,因此可以在pom.xml直接配置依赖。

    接入fundebug-java

    <dependency>
        <groupId>com.fundebug</groupId>
        <artifactId>fundebug-java</artifactId>
        <version>0.2.0</version>
    </dependency>
    

    接入fundebug-spring

    <dependency>
        <groupId>com.fundebug</groupId>
        <artifactId>fundebug-spring</artifactId>
        <version>0.2.0</version>
    </dependency>
    

    参考

    关于Fundebug

    Fundebug专注于JavaScript、微信小程序、微信小游戏、支付宝小程序、React Native、Node.js和Java线上应用实时BUG监控。 自从2016年双十一正式上线,Fundebug累计处理了9亿+错误事件,付费客户有Google、360、金山软件、百姓网等众多品牌企业。欢迎大家免费试用

    版权声明

    转载时请注明作者Fundebug以及本文地址:
    https://blog.fundebug.com/2019/01/07/fundebug-java-0-2-0/

  • 相关阅读:
    Oracle和MySQL的对比
    mysql的默认隔离级别
    mysql数据库中锁机制的详细介绍
    什么电影是好电影
    周记 2019.4.8~4.14
    周记 2019.3.25~2019.3.31
    IntelliJ Idea 使用笔记
    笔记
    kafka总结
    Spring boot
  • 原文地址:https://www.cnblogs.com/fundebug/p/fundebug_java_0_2_0.html
Copyright © 2011-2022 走看看