Thanks for the video of Spring Web Flux, can you please share the code in Github
@wrishavbhattacharyya52163 жыл бұрын
how did you create the reactive session
@sesi52893 жыл бұрын
I made everything you did.Postman doesnt give any error,it shows status 200 but it doesnt show any data.Its not pulling it from cassandra database.Any idea why can it be?
@nguyentuyenit2 жыл бұрын
I am also get the same you. It is not pulling it from cassandra database.
@rohitthadakapalli545 жыл бұрын
how were you able to create a new student with args without a constructor in model? And also the data doesn't add in my repository.. no errors ntn but unable to pull data from repository.
@javalearn69774 жыл бұрын
You need to be add lombak.jar in classpath so @Data and various annotation automatic create setter getter constructor in fly.
@alexandrspodin39724 жыл бұрын
studentRepository.saveAll(students).subscribe(); saveAll returns Flux, so we need to subscribe to it to start pushing students, this authors mistake I think