Spring WebFlux - no JSP support? - spring-webflux

I was trying to configure Spring WebFlux with JSP. I don't see any View class for supporting JSTL views in Spring WebFlux.
Does this mean that we can't develop a JSP application using Spring WebFlux?
Thanks, AJ

WebFlux is not tied to the Servlet specification so JSP support cannot be consistently implemented across deployment options.

Related

Spring 5 MVC with spring-cloud-sleuth-otel

Can we have sleuth with Otel for non spring boot applications?
Please share inputs.
No you can't. Spring Cloud Sleuth OTel requires Boot based applications.

How to use request and session scopes in spring-webflux (as of latest releases)

I am developing a rest web service using reactive programming through spring-webflux(Spring Boot 2.1 and Spring Framework 5.1). I need to create components having request level scope. #Scope annotation is suggested for spring MVC applications. But I found that the same doesn't work with webflux application.
Is there an equivalent feature available in webflux, as of latest release?
If not, what shall be the workaround here to create a new instance of a component on every incoming request?
I am trying to avoid use of new operator.
Thank you for the suggestions.
Unfortunately you cannot use request scopes in spring-webflux like in spring MVC applications. The main reason being, they use ThreadLocals which cannot be used by spring-webflux as work can be done on any thread at any time.
Spring webflux uses project-reactor at its core. So you can use Reactor Context which allows you to share data in your reactive pipeline.

How Spring MVC works with mybatis?

I am new to Spring MVC and i completed one crud operation using Spring MVC with JDBC template in Maven, now I am going to use of myBatis for same project.
But i don't know about myBatis , what is the advantage of using myBatis instead of JDBC and how it works with Spring MVC.
MyBatis has an official demo app called JPetStore which is based on Stripes.
There are several user contributed variants and this one is based on Spring MVC.
If you are using Spring Boot, check out this demo project which uses MyBatis Spring Boot Starter to make configuration easier.

Does spring-boot-starter-webflux include spring-boot-starter-web?

Can I use the existing spring-boot-starter-web coding scheme with only spring-boot-starter-webflux added?? without spring-boot-starter-web.
spring-boot-starter-webflux provides the relevant dependencies for a Spring WebFlux application, from Jackson to the spring-webflux module for annotation and functional programming models.
spring-boot-starter-web does the same for Spring MVC.
Having both on the classpath means that you want a Spring MVC app and still use the new WebClient provided by Spring WebFlux in that application.
As mentioned in the Spring Boot reference documentation, you should add spring-boot-starter-webflux if you want to create a Spring WebFlux app and avoid adding spring-boot-starter-web.

What are the advantages of Spring WebFlux over standard Spring Boot, TomCat, Jetty, Servlet 3.1, Netty?

As I understand - there is an opportunity to consume fewer of RAM and CPU.
As I know Servlet 3.1 already has been using NIO too. Are there any advantages in speed and/or loading?
This is a rather broad topic - but let's clear things up first.
Spring MVC is a web framework based on the Servlet API; such apps can be deployed on Servlet containers (like Jetty, Tomcat, Undertow).
Spring WebFlux is a reactive web framework based on a reactive HTTP layer; such apps can be deployed on Netty or Undertow (with native adapters) or Jetty/Tomcat/any Servlet 3.1 container (thanks to a Servlet 3.1 adapter).
Spring Boot applications can use Spring MVC or Spring WebFlux
Spring Framework 5.0 provides an FAQ about that with several useful resources. In short, this approach can be beneficial for efficiency and scalability for workloads dealing with lots of latency and concurrency.
Indeed, Servlet 3.1 async I/O does address those issues as well, but using that API requires to depart from using the other bits of the Servlet API which are blocking. This is why Spring WebFlux doesn't expose the Servlet API in its programming model but leverages a Servlet adapter.