Posts by Rafael Oliveira da Silva • 66 points
5 posts
-
2
votes3
answers84
viewsA: Access values from a python json
You can use the following code to access the obj "42.131.121.100": print(data.text["42.131.121.100"]["country"])
-
1
votes1
answer357
viewsA: Restcontroller Spring, how to limit the number of requests!
Perhaps, if you implement an asynchronous solution the problem will be solved. Check out this material. With an asynchronous implementation, your system will not be locked when receiving a request…
-
0
votes1
answer38
viewsA: How to exchange data between a web page with App using Firebase
Hello. Well, you didn’t specify which technologies you used to develop the web application. If you are using angular 2, I recommend using Angularfire 2 (angle library for firebase manipulation). But…
-
1
votes1
answer318
viewsA: How to set up a common java project, host and run on a server
Hey, good night, man. You haven’t specified what kind of information you expect as an input in java, but regardless, you need to use a concept called Threads! Each thread is a parallel execution in…
-
1
votes3
answers233
viewsA: Badrequest 400 Httpparams Angular 4.3
This problem has already occurred with me. If I can’t use Httpparams, make a String manipulation and manually add the params. ex.: public getPessoas(idade){ this.http.get(URL_API+"?idade="+idade)…