We are building a project that is based on java ee. In my part I made a map that is written in javascript. They want me to integrate my map to their code. By integrating, they want me to retrieve all data from their server. They said what if google closes its service. You should retrieve your data from our server. But I couldn't exactly understand what I'm going to do. That's why I'm asking in here. This is what I have done so far in order to clarify things.
1 Answer
I think they mean you should query the Google api from your backend and store the results in RDBMS. Then in your front end read from your database and display it.
15 Comments
Mert AKEL
Thanks. Can you give me any link of tutorial or stackoverflow entries? If possible.
strash
yep yep I will find you one. You must choose the db type. Are you familiar with sql databases or nosql databases? dont you have any on your system?
strash
for now you have only a javascript front end that is querying the google apis and returning json responses- and you display them directly to your page
strash
so now instead of displaying them you should write them to the database
strash
the thing you are trying to make will not be easy if you dont have a database in your project for now. Take a look at this thread: stackoverflow.com/questions/8412505/…
|