共计 1303 个字符,预计需要花费 4 分钟才能阅读完成。
摘要: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-java 与 fundebug-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 文档 – Java
Maven 入门教程
关于 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/