Rob Winch
Rob Winch
It would be nice to be able to add properties to the `Environment` based upon properties of a bean. [Spring Boot Testjars](https://github.com/spring-projects-experimental/spring-boot-testjars) does this using the code in [org.springframework.experimental.boot.test.context](https://github.com/spring-projects-experimental/spring-boot-testjars/tree/fa16cc7e661105d83e73866351d67664ab699919/spring-boot-testjars/src/main/java/org/springframework/experimental/boot/test/context). For...
`DelegatingWebFluxConfiguration` can trigger `BeanCurrentlyInCreationException` under a few circumstances. # ReactiveAdapterRegistry The first problem is that it is difficult to provide a `HandlerMethodArgumentResolver` that needs the `ReactiveAdapterRegistry` because this can cause...
### Module Core ### Proposal Spring Security is currently [working on adding support](https://github.com/spring-projects/spring-security/issues/14121) for [OpenFGA](https://openfga.dev/) and I think that adding official Testcontainers support for [OpenFga's Existing Docker Image](https://openfga.dev/docs/getting-started/setup-openfga/docker) . I'm...
# Summary I'd like to construct an instance of `Extensions.CredentialProperties.CredentialPropertiesOutput` but the constructor is not public. Can you please make the constructor public? # Details The `Extensions.CredentialProperties.CredentialPropertiesOutput` is not public...
It would be very helpful to provide a UI (similar to m2e) for viewing the dependencies and dependency tree within Eclipse. This is a key source of frustration for me...
I'm creating this as a parent issue to some method security enhancements that I think would be nice. - [x] #14480 - [x] #14596 - [x] #14601 - [x] #14597...
There are times that users cannot add annotations to objects or APIs that they want to secure. For example, consider if an _team external_ provides a `PersonService` and _team internal_...
### Summary Password reuse is a serious problem for users and the source of many different hacks. It would be awesome if we could provide integration with https://haveibeenpwned.com to alert...
When logging into a site with compromised password in chrome (this happens when I authenticate to a sample Spring Security application with a password of password), I see this ...
The `InitializeUserDetailsBeanManagerConfigurer` should inject the `PasswordEncoder` into the constructor of `DaoAuthenticationProvider` to prevent the unnecessary execution of `PasswordEncoderFactories.createDelegatingPasswordEncoder()` which causes issues for users with FIPS compliant JDKs. See https://github.com/spring-projects/spring-security/issues/14670