Spring WebFlux Essentials 33 - SpringDocs OpenAPI with WebFlux and Spring Security

preview_player
Показать описание
DevDojo Academy is bringing to you another exceptional Spring playlist. Spring WebFlux Essentials.
Spring WebFlux essentials follow the same style of our Spring Boot Essentials and Project Reactor Essentials.
This time, DevDojo will guide you step-by-step over the essential you need to know about WebFlux with R2DBC.
From the setup, connecting to the Postgres database, reactively securing the endpoints, unit and integration tests, documenting with SpringDoc OpenAPI, and more.

Рекомендации по теме
Комментарии
Автор

This is a fantastic tutorial. Was extremely helpful.

kiranns
Автор

Is there any way we can remove webjars from the url

ayushmittal
Автор

I added sprindoc to a webflux project today using this and I didn't get any of the errors, so I guess it has been taken care of :)

eliamzg
Автор

Uncaught SyntaxError: Unexpected token '}' on swagger-ui-bundle.js

This error i m getting when i open the swagger ui

sriramkumarc
Автор

Thanks for the video.

Ended up adding this in blockhound config

.allowBlockingCallsInside("java.util.zip.InflaterInputStream", "read")
// .allowBlockingCallsInside("java.io.InputStream", "readNBytes")
.allowBlockingCallsInside("org.springdoc.core.OpenAPIService", "initializeHiddenRestController");
}

harshaghanta