From 0b3a05b463062d6dfbdbf79a7383241a09995295 Mon Sep 17 00:00:00 2001 From: Minsung Oh <62738554+qww1552@users.noreply.github.com> Date: Wed, 20 Mar 2024 16:45:42 +0900 Subject: [PATCH] Fix link to vavr in the reference guide See gh-32494 --- .../pages/data-access/transaction/declarative/rolling-back.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework-docs/modules/ROOT/pages/data-access/transaction/declarative/rolling-back.adoc b/framework-docs/modules/ROOT/pages/data-access/transaction/declarative/rolling-back.adoc index b002be989d24..1de4c5af2567 100644 --- a/framework-docs/modules/ROOT/pages/data-access/transaction/declarative/rolling-back.adoc +++ b/framework-docs/modules/ROOT/pages/data-access/transaction/declarative/rolling-back.adoc @@ -23,7 +23,7 @@ As of Spring Framework 5.2, the default configuration also provides support for Vavr's `Try` method to trigger transaction rollbacks when it returns a 'Failure'. This allows you to handle functional-style errors using Try and have the transaction automatically rolled back in case of a failure. For more information on Vavr's Try, -refer to the [official Vavr documentation](https://www.vavr.io/vavr-docs/#_try). +refer to the https://docs.vavr.io/#_try[official Vavr documentation]. Here's an example of how to use Vavr's Try with a transactional method: [tabs]