Closed gredwhite closed 1 year ago
As ReactiveSecurityContextHolder
is from https://github.com/spring-projects/spring-security, you would need to check with respective project about the failure.
As
ReactiveSecurityContextHolder
is from https://github.com/spring-projects/spring-security, you would need to check with respective project about the failure.
I think it is very popular scenario so it would be helpful if you could add it to the https://github.com/minio/minio-java/tree/master/examples
As
ReactiveSecurityContextHolder
is from https://github.com/spring-projects/spring-security, you would need to check with respective project about the failure.
Maybe there is a way to pass JWT token dynamically ? (not via credentials provider)
As
ReactiveSecurityContextHolder
is from https://github.com/spring-projects/spring-security, you would need to check with respective project about the failure.
Do you have plans to create minio reactive client ?
I have sping-boot application with rest services written using Spring web flux.
For now I access minio using login/password authorizaton and it works fine.
For now I want to exchange application JWT token with STS minio token and I implemented method to test:
This code successfully works and returns
true
becausemybucket
actually exists.But it is only test and I need to move
minioClient
to the configuration. The issue here that I have to have credentials provider there.So I've created folowing configuration:
But unfortunately method
block()
fails with exception:Any ideas how to configure it?