From ec3817045e83021c2f7506aff22d01798b38a44c Mon Sep 17 00:00:00 2001 From: Evan Purkhiser Date: Tue, 2 Dec 2025 13:41:26 -0500 Subject: [PATCH] docs(crons): Add AspectJ dependency requirement for Spring Boot @SentryCheckIn annotation --- platform-includes/crons/setup/java.spring-boot.mdx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/platform-includes/crons/setup/java.spring-boot.mdx b/platform-includes/crons/setup/java.spring-boot.mdx index fdf6d40167986a..3ea78416f87a86 100644 --- a/platform-includes/crons/setup/java.spring-boot.mdx +++ b/platform-includes/crons/setup/java.spring-boot.mdx @@ -1,5 +1,11 @@ If you are using [Quartz](http://www.quartz-scheduler.org/), please see our Quartz integration. You may also [send check-ins manually](/platforms/java/crons/). + + +The `@SentryCheckIn` annotation requires `org.aspectj:aspectjweaver` to be present as a dependency in your project. + + + ## Check-Ins (Recommended) Check-in monitoring allows you to track a job's progress by completing two check-ins: one at the start of your job and another at the end of your job. This two-step process allows Sentry to notify you if your job didn't start when expected (missed) or if it exceeded its maximum runtime (failed). To start sending check-ins simply add the `@SentryCheckIn("")` annotation to the method you want to send check-ins for.