[Fixed]-How to connect to Django from Spring

1👍

You can simply make an HTTP request to your Django server, respond with JSON, and then parse that JSON into a Java class using a library like jackson.

Alternatively you can use a shared database where Spring simply uses JDBC to access the data you are trying to reach.

Leave a comment