尝试更新服务以使用BouncyCastle进行符合FIPS的加密将启动,但是,对服务的每个请求最终都会失败,从而产生如下堆栈跟踪:[ctor-http-nio-5] o.b.jsse.provider.ProvTlsServer : Server specified new session: 3897681a0667834f4be0c7c579976c84863b65c3cb5b572ab2064488
对于Spring org.springframework.web.client.RestTemplate来说,定义自己的HttpMessageConverter相对容易: * Set the message body converters to use. */
public void setMessageConverters(List<HttpMessageConverter<?>>
我试图白化所有以/health结尾的自定义端点,但在WebFlux Security中,我无法使用正则表达式来匹配所有端点。例如/app/health、/app/meta/health、/app/定制/meta/health、/api/app/定制/meta/health等。在构造SecurityWebFilterChain时,我没有找到任何模式(或regex)来白化这些端点。此外,如果我试图使用regex,也会收到警告。
spring-security '**' patterns are not supported in the middle of patterns and
我目前正在努力将代理与Spring-Webflux结合使用。此包使用Spring-Webflux for HTTP(S)。该服务现在尝试从给定的uri (需要代理)获取jwk-set,但由于连接被拒绝错误而失败。有人使用了Spring-Webflux/OAuth-Ressource和proxy的组合吗?