You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Readme.md
+24
Original file line number
Diff line number
Diff line change
@@ -32,6 +32,30 @@ class ExampleApp{
32
32
}
33
33
```
34
34
35
+
## Spring Boot Users
36
+
37
+
You can observe `NoClassDefFoundError` in your Spring-boot apps because Spring-boot uses v3 of `OkHttpClient` while this client uses v4. In that case you have to explicitly declare v4 of the library in you `pom.xml/build.gradle`.
38
+
39
+
```
40
+
<dependencies>
41
+
<dependency>
42
+
<groupId>com.exceptionless</groupId>
43
+
<artifactId>exceptionless-client</artifactId>
44
+
<version>1.0-beta1</version>
45
+
</dependency>
46
+
<dependency>
47
+
<groupId>org.springframework.boot</groupId>
48
+
<artifactId>spring-boot-starter-web</artifactId>
49
+
</dependency>
50
+
<!-- EXPLICIT DECLARATION -->
51
+
<dependency>
52
+
<groupId>com.squareup.okhttp3</groupId>
53
+
<artifactId>okhttp</artifactId>
54
+
<version>4.9.1</version>
55
+
</dependency>
56
+
</dependencies>
57
+
```
58
+
35
59
## General Data Protection Regulation
36
60
37
61
By default the Exceptionless Client will report all available metadata including potential PII data.
0 commit comments