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
+21-14Lines changed: 21 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,8 @@
1
1
# Exceptionless.Java
2
2
3
-
The definition of the word exceptionless is: to be without exception. [Exceptionless](https://exceptionless.io) provides real-time error reporting for your Java apps. It organizes the gathered information into simple actionable data that will help your app become exceptionless!
3
+
The definition of the word exceptionless is: to be without exception. [Exceptionless](https://exceptionless.io) provides
4
+
real-time error reporting for your Java apps. It organizes the gathered information into simple actionable data that
5
+
will help your app become exceptionless!
4
6
5
7
## Using Exceptionless
6
8
@@ -11,7 +13,7 @@ Refer to the Exceptionless documentation here: [Exceptionless Docs](http://docs.
11
13
## Show me the code
12
14
13
15
```java
14
-
classExampleApp{
16
+
classExampleApp{
15
17
publicstaticvoidmain(String[] args) {
16
18
privatestaticfinalExceptionlessClient client =
17
19
ExceptionlessClient.from(
@@ -44,24 +46,26 @@ _Example: Customizing your Event Queue implementation_
In this library we have made sure that all the values which are not set by builders fallback to reasonable defaults. So
56
58
don't feel the pressure to supply values for all the fields. **Note:** Whenever customizing the client
57
-
using `ConfigurationManager` never forget to supply your `serverUrl` and `apiKey` using a `Configuration` object as
59
+
using `Configuration` never forget to supply your `serverUrl` and `apiKey` using a `Configuration` object as
58
60
shown above.
59
61
60
62
## Spring Boot Users
61
63
62
-
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`.
64
+
You can observe `NoClassDefFoundError` in your Spring-boot apps because Spring-boot uses v3 of `OkHttpClient` while this
65
+
client uses v4. In that case you have to explicitly declare v4 of the library in you `pom.xml/build.gradle`.
63
66
64
67
```xml
68
+
65
69
<dependencies>
66
70
<dependency>
67
71
<groupId>com.exceptionless</groupId>
@@ -83,15 +87,18 @@ You can observe `NoClassDefFoundError` in your Spring-boot apps because Spring-b
83
87
84
88
## General Data Protection Regulation
85
89
86
-
By default the Exceptionless Client will report all available metadata including potential PII data.
87
-
You can fine tune the collection of information via Data Exclusions or turning off collection completely.
90
+
By default the Exceptionless Client will report all available metadata including potential PII data. You can fine tune
91
+
the collection of information via Data Exclusions or turning off collection completely.
88
92
89
-
Please visit the [docs](https://exceptionless.com/docs/clients/javascript/client-configuration/#general-data-protection-regulation)
93
+
Please visit
94
+
the [docs](https://exceptionless.com/docs/clients/javascript/client-configuration/#general-data-protection-regulation)
90
95
for detailed information on how to configure the client to meet your requirements.
91
96
92
97
## Support
93
98
94
-
If you need help, please contact us via in-app support, [open an issue](https://github.com/exceptionless/Exceptionless.Java/issues/new) or [join our chat on Discord](https://discord.gg/6HxgFCx). We’re always here to help if you have any questions!
99
+
If you need help, please contact us via in-app
100
+
support, [open an issue](https://github.com/exceptionless/Exceptionless.Java/issues/new)
101
+
or [join our chat on Discord](https://discord.gg/6HxgFCx). We’re always here to help if you have any questions!
0 commit comments