-
Notifications
You must be signed in to change notification settings - Fork 38.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support using Vavr's Try.of().mapTry() with @Transactional #31285
Comments
I'm not sure what we could do differently here. Is our internally registered |
@jhoeller sorry if I confused you, what I mean here is when we use Transactional annotation in an example like this: if #20361 We have this issue that transactional supports Try its been implemented a long time ago, and I was wondering if it's possible to do with .mapTry also if it's possible. public Try<Void> savePhoneNumber(PhoneNumberParams params) {
return Try.of(() ->
userRepository.findById(params.getUserId()).orElseThrow())
.mapTry(userEntity -> {
userEntity.setPhoneNumber(params.getPhoneNumber());
return userRepository.save(userEntity);
})
.<Void>map(ignored -> null)
.onFailure(ex -> log.error("phone number cannot be saved.", ex));
} I hope I make sense here. and thanks for your time |
I see what you are trying to accomplish there. It's just that Spring is not really involved in that call arrangement up until the resulting |
for your question yes, I also expected the behavior to be transparent. My assumption was that any I'm curious that |
I'm afraid I cannot reproduce this, several variations of your second example work for me both in terms of Spring's rollback handling and with a custom FWIW your first example does not actually return the |
Sorry for the late reply sir, I created a POC repo, you can check it if it's possible, basically I run a postgres instance in docker, and in This makes the application stop working and here is the piece of code in @Transactional
public void test() {
Try.of(() -> userRepository.findByName("aland").orElseThrow())
.map(userEntity -> {
userEntity.setSlug("aland");
return userRepository.save(userEntity);
})
.<Void>map(ignored -> null)
.onFailure(ex -> log.error("slug cannot be saved.", ex));
} So I'm not sure here if I miss the concept of And thanks yes you are abs right, It was my bad I just wanted to show the skeleton of the error instead of a real example :) |
In the code example above, Spring is not actually involved. All that Spring does is to detect a returned So as long as you can structure your code to return a |
@jhoeller Thank you i understand now |
I'm using Spring Framework with the Vavr library to handle exceptions using the
Try
class.While
Try.of()
is well supported and integrates well with@Transactional
, I've noticed that usingmapTry
/map
(map
is a shortcut formapTry
) afterTry.of()
doesn't propagate exceptions toonFailure
and instead throws exceptions with proxy class.It will be nice to have this enhancement if it's possible so we can get exceptions on failure if something happens on
mapTry
.Steps to Reproduce:
@Transactional
annotation on a service method.Try.of()
andmapTry
in the method body.Expected Behavior:
When an exception is thrown inside
mapTry
, it should be caught by theonFailure
block.Actual Behavior:
The exception is not caught by
onFailure
.The text was updated successfully, but these errors were encountered: