Home > Software design >  How to send data from SpringBoot to flask
How to send data from SpringBoot to flask

Time:08-31

I want to send data in json format to Flask in Spring Boot. enter image description here

Currently Flask is ready to receive data to send from Spring Boot.

CodePudding user response:

use webclient or rest template or u can use redis or kafka to publish data then the flask app consumes it

CodePudding user response:

As the first floor said, you can send an post request with json body

  • Related