I set up a tomcat server in Intellij which receives request with JSON data from a client. I want to display this data in a swing jTable. What is the best way to do this? (If it's at all possible) I already know how to convert JSON to Strings in java. My next obstacle is pushing that data to a jTable.
I have to start my Main and Tomcat separately, and I don't know how to push data to my current Java program I started with my Main Class.