0
Today we have an application made in java, but this application does not use any framework in the back end, I need to do one more project and do not want to use the same architecture, I already have the approval and will do the new project in spring boot.
today we have a large application that does not use any framework, what I need to do is, in the old request provide some information and in the spring project consume this information.
What would be the best way to make this communication?
It is a web application?
– Laerte
How is communication done with this application "without framework"?
– Gabriel Coletta
Yes, it is a web application, in fact all projects created are injected as dependency of the general project.
– Carlos Henrique Silva
You can make the data available by creating new endpoints that return data in json format, so in your Spring application you can consume more easily as if it were a REST webservice.
– Laerte
Can also create a facade for consular this giant application.
– Gabriel Coletta
You can make a Broker that is actually a client that consumes the project endpoints in spring boot and passes this information to the legacy system in the format it expects, and vice versa.
– LeonanCarvalho
@Carloshenriquesilva is very trampo consume this data directly in the new application?
– Laerte
In fact, I found other problems that will make my application be made in the same old architecture, guys, thank you so much for the time solutions.
– Carlos Henrique Silva