|
@@ -7,20 +7,24 @@ import {StepType} from 'sentry/components/onboarding/gettingStartedDoc/step';
|
|
|
import {t, tct} from 'sentry/locale';
|
|
|
|
|
|
// Configuration Start
|
|
|
-const introduction = tct(
|
|
|
- "There are two variants of Sentry available for Spring Boot. If you're using Spring Boot 2, use [springBootStarterLink:sentry-spring-boot-starter]. If you're using Spring Boot 3, use [springBootStarterJakartaLink:sentry-spring-boot-starter-jakarta] instead. Sentry's integration with [springBootLink:Spring Boot] supports Spring Boot 2.1.0 and above to report unhandled exceptions as well as release and registration of beans. If you're on an older version, use [legacyIntegrationLink:our legacy integration].",
|
|
|
- {
|
|
|
- springBootStarterLink: (
|
|
|
- <ExternalLink href="https://github.com/getsentry/sentry-java/tree/master/sentry-spring-boot-starter" />
|
|
|
- ),
|
|
|
- springBootStarterJakartaLink: (
|
|
|
- <ExternalLink href="https://github.com/getsentry/sentry-java/tree/master/sentry-spring-boot-starter-jakarta" />
|
|
|
- ),
|
|
|
- springBootLink: <ExternalLink href="https://spring.io/projects/spring-boot" />,
|
|
|
- legacyIntegrationLink: (
|
|
|
- <ExternalLink href="https://docs.sentry.io/platforms/java/legacy/spring/" />
|
|
|
- ),
|
|
|
- }
|
|
|
+const introduction = (
|
|
|
+ <p>
|
|
|
+ {tct(
|
|
|
+ "There are two variants of Sentry available for Spring Boot. If you're using Spring Boot 2, use [springBootStarterLink:sentry-spring-boot-starter]. If you're using Spring Boot 3, use [springBootStarterJakartaLink:sentry-spring-boot-starter-jakarta] instead. Sentry's integration with [springBootLink:Spring Boot] supports Spring Boot 2.1.0 and above to report unhandled exceptions as well as release and registration of beans. If you're on an older version, use [legacyIntegrationLink:our legacy integration].",
|
|
|
+ {
|
|
|
+ springBootStarterLink: (
|
|
|
+ <ExternalLink href="https://github.com/getsentry/sentry-java/tree/master/sentry-spring-boot-starter" />
|
|
|
+ ),
|
|
|
+ springBootStarterJakartaLink: (
|
|
|
+ <ExternalLink href="https://github.com/getsentry/sentry-java/tree/master/sentry-spring-boot-starter-jakarta" />
|
|
|
+ ),
|
|
|
+ springBootLink: <ExternalLink href="https://spring.io/projects/spring-boot" />,
|
|
|
+ legacyIntegrationLink: (
|
|
|
+ <ExternalLink href="https://docs.sentry.io/platforms/java/legacy/spring/" />
|
|
|
+ ),
|
|
|
+ }
|
|
|
+ )}
|
|
|
+ </p>
|
|
|
);
|
|
|
|
|
|
export const steps = ({
|