Posts by Daniel Gomes • 33 points
2 posts
-
-1
votes1
answer37
viewsQ: Using Map<K,V> to access Object
I have a Key value object, where the value is an Object Map<String, String> endereco = new Map<String, Object>(); endereco.put("logradouro", "Rua Um"); Map<String, Object> aluno =…
javaasked Daniel Gomes 33 -
3
votes1
answer194
viewsQ: Refresh token requests delayed
How to make the token be created at the same time the method gets: The way I implemented it, it checks that the token was created, but the token used for the request is the expired token. Only after…