Spring Boot SDK
AllStak Spring Boot SDK Installation Guide
Step 1: Add the AllStak Dependency
To integrate AllStak with your Spring Boot application, add the following dependency to your pom.xml
:
For Gradle users, add this to build.gradle
:
Step 2: Configure AllStak Properties
Add the following properties to your application.properties
or application.yml
file:
For application.properties
:
application.properties
:For application.yml
:
application.yml
:Step 3: Capture Exceptions with AllStak
To automatically capture exceptions, add the following snippet inside a try-catch
block:
This ensures that all unhandled exceptions are logged and sent to AllStak for monitoring.
Step 4: Enable Global Exception Handling (Optional)
To globally capture exceptions in your Spring Boot application, you can use @ControllerAdvice
as follows:
This setup ensures that all exceptions in your application are automatically sent to AllStak for tracking and debugging.
Additional Notes
Ensure that your API key is kept secure and not exposed in public repositories.
The
allstak.environment
property allows you to specify different environments (e.g.,dev
,staging
,prod
).The
allstak.release
property helps track issues across different application versions.
By following these steps, you will have successfully integrated AllStak with your Spring Boot application for enhanced error monitoring and tracking.
Last updated