Hantsy Bai
Hantsy Bai
I was trying to use atmoz/sftp to host a sftp server for testing purpose. In my project, I used Spring Integration/Jsch as client to connect sftp, the authentication is succeeded,...
I tried to use `Year` type(`INT` in the db column) in my projects(Spring Boot 3.0.4, R2dbc 1.0, Postgres R2dbc 1.0.1.RELEASE), and got the following exception when run repository test against...
I found r2dbc-postgresql depends on Netty 4.x. In Spring 6, it added optional Netty 5 as runtime, when use Netty 5 to build a Spring WebFlux project and use R2dbc/Postgres,...
Follow the existing extension modules from https://github.com/Kotlin/kotlinx.coroutines/tree/master/reactive, add `Uni.awaitSingle()` and `Uni.awaitSingleOrNull` instead, the naming is more clear and easy migrated from other ReactiveStreams/JDK9 Flow impls.
Kotlinx coroutines Reactive includes an general extension fun to convert `Publisher` to Kotlin Flow, https://github.com/Kotlin/kotlinx.coroutines/blob/master/reactive/kotlinx-coroutines-reactive/src/ReactiveFlow.kt Besides add extensions to general ReactiveStreams API, https://github.com/Kotlin/kotlinx.coroutines/tree/master/reactive it also supports Reactor, Rxjava2/3, JDK 9...
I tried to use `UniAssertSubscriber` in test, but it is not powerful as reactor's `StepVerifier`. I hope there are some fluent APIs added to `UniAssertSubscriber` like this to assert the...
When adding starter into the project, the [TogglzTestExecutionListener](https://github.com/togglz/togglz/blob/master/spring-core/src/main/java/org/togglz/spring/test/TogglzTestExecutionListener.java) will be enabled by default for tests, and it is better to move it standalone module(eg. `togglz-spring-test`) and allow developers to add...
Add Reactive Streams and Kotlin Coroutines to the core APIs. * StateRepository, UseRepository etc -> ReactiveStateRepository... * FeatureManager-> ReactiveFeatureManager Finally add a Spring WebFlux support module and Kotlin Coroutines module...
There is an extension which add jooq support in Quarkus, but it is based on the traditional Jdbc, does not support reactive stack. Quarkus is based on Vertx, CDI runtime(Arc),...
## Description ```kotlin @Configuration @Import(SecurityProblemSupport::class) class SecurityConfig{ @Autowired lateinit var problemSupport: SecurityProblemSupport //... @Bean fun springWebFilterChain(http: ServerHttpSecurity): SecurityWebFilterChain = http { //.... exceptionHandling { authenticationEntryPoint = problemSupport accessDeniedHandler = problemSupport...