摘要: 0.3.1修復Maven下載失敗的問題。java
<dependency>
<groupId>com.fundebug</groupId>
<artifactId>fundebug-java</artifactId>
<version>0.3.1</version>
</dependency>
複製代碼
import com.fundebug.Fundebug;
Fundebug fundebug = new Fundebug("apikey");
複製代碼
能夠參考 Demo 項目Fundebug/fundebug-java-demo。github
<dependency>
<groupId>com.fundebug</groupId>
<artifactId>fundebug-spring</artifactId>
<version>0.3.1</version>
</dependency>
複製代碼
新增FundebugConfig.javaspring
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");
}
}
複製代碼
能夠參考Demo項目Fundebug/fundebug-spring-demo。微信小程序
Fundebug專一於JavaScript、微信小程序、微信小遊戲、支付寶小程序、React Native、Node.js和Java線上應用實時BUG監控。 自從2016年雙十一正式上線,Fundebug累計處理了9億+錯誤事件,付費客戶有Google、360、金山軟件、百姓網等衆多品牌企業。歡迎你們免費試用!api
轉載時請註明做者Fundebug以及本文地址:
blog.fundebug.com/2019/01/07/…微信