Why isn’t the page size part of the request parameters? It’s good to see you out of your comfort zone. If you want the performance benefits does the server have to be reactive too? For example if the underlying persistence layer supports reactive APIs.
The page size has a default (20 I think?) and that worked OK for the tut. If you were implementing a service where you wanted a finer-grain control, then absolutely pass that across as well. Same goes for any sorting params 💪 App servers implement certain specs e.g tomcat implements the servlet spec (non-reactive). I think Netty has a bridge which allows you to run non-reactive apps on it, but tomcat (AFAIK) cannot run reactive apps. So Netty (or something similar) would be required for project Reactor stuff. As for repositories there's ReactiveCrudRepository which may be worth a look 👍
thank you mate!
How do you get books and authors in parallel, then nest the books to their respective author?
Why isn’t the page size part of the request parameters? It’s good to see you out of your comfort zone. If you want the performance benefits does the server have to be reactive too? For example if the underlying persistence layer supports reactive APIs.
The page size has a default (20 I think?) and that worked OK for the tut. If you were implementing a service where you wanted a finer-grain control, then absolutely pass that across as well. Same goes for any sorting params 💪
App servers implement certain specs e.g tomcat implements the servlet spec (non-reactive). I think Netty has a bridge which allows you to run non-reactive apps on it, but tomcat (AFAIK) cannot run reactive apps.
So Netty (or something similar) would be required for project Reactor stuff.
As for repositories there's ReactiveCrudRepository which may be worth a look 👍
What if I am having app_id, app_key and some of the optinal query? How can i do so?
By the way really appreciate all your Spring Boot Tutorial !
We could also use default value annotation for zero page
Thank you ☺️
You are very welcome!
Is it possible to configure a proxy url and port on web client, similar to what a rest template can do in its config?
Can we have the repository link?
Thank you.