Skip to content

Commit c45c152

Browse files
authored
Merge pull request #32 from exceptionless/fix-readme
Updated readme
2 parents e45c18f + 726452e commit c45c152

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

Diff for: Readme.md

+24
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,30 @@ class ExampleApp{
3232
}
3333
```
3434

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+
3559
## General Data Protection Regulation
3660

3761
By default the Exceptionless Client will report all available metadata including potential PII data.

0 commit comments

Comments
 (0)