-
기존 MVC의 경우 H2 웹 콘솔 제공으로 바로 접속이 가능하지만 Webflux와 H2를 같이 쓸 때는 별도의 설정이 필요했다.
``` kotlin
@Component
@Profile("local")
class H2Console {
private lateinit var webServer: Server
@EventListe…
-
https://www.vincenzoracca.com/en/blog/framework/spring/virtual-threads-vs-webflux/
-
dyrnq updated
1 month ago
-
For my tests I use `com.epages:restdocs-api-spec-restassured` and my application is developed with `spring-boot-starter-webflux` unfortunately `restdocs-api-spec` contains `spring-boot-starter-web` an…
-
Problem:
The below code throws the following error on Spring Boot 3.4.0 but not on Spring Boot 3.3.6:
```bash
java.lang.ClassCastException: class kotlin.Unit cannot be cast to class kotlin.Result …
-
Using swagger-ui version 2.2.26 and jackson-databind version 2.18.1, on jdk21, i get tons of these errors..
ERROR io.swagger.v3.core.jackson.ModelResolver - Neither 'findJsonValueMethod' nor 'findJ…
-
Hi,
I’ve stumbled over some strange behavior regarding internationalization of validation error messages in a spring-boot application using webflux. But I think the error is related to spring-frame…
-
# 3 techniques to stream JSON in Spring WebFlux
Podcast for developers, testers, SREs… and their managers. I explain complex and convoluted technologies in a clear way, avoiding buzzwords and hype. N…
-
Please do a quick search on GitHub issues first, the feature you are about to request might have already been requested.
**Expected Behavior**
The current FunctionCallback only supports blocking…
-
## Webflux 환경에서 Test
## @ExtendWith(~.class)
- `@ExtendWith (SpringExtension.class) `, `@ExtendWith (MockitoExtension.class)` 으로 설정하는 경우가 많은데 각 Extension.class에서 Spring context와 junit5을 통합해서 사용하도록…