Posts by Arthur Almeida • 49 points
5 posts
-
0
votes1
answer55
viewsQ: Salesforce Query Returning Wrong Date
In Salesforce when I run the following query SELECT Data_de_Nascimento__c FROM Account WHERE id = '0013K00000ABC' he returns me 1999-05-29 In Java, after I set up the integration, I run this…
-
0
votes1
answer21
viewsQ: Receive Email with Android Java
I have this simple screen <?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"…
-
1
votes0
answers44
viewsQ: PUT error: All object fields are null
I have a user with id 3, a car with id 6 and I do a POST on the rental passing these 2 id’s, until then ok, the GET returns this { "id": 5, "usuarioCliente": { "id": 3, "nome": "Arthur", "cpf":…
-
0
votes1
answer259
viewsQ: How to test Controller with Junit?
I’m testing the URL like this package br.com.aluguel.de.carros.unidade.usuario; import br.com.aluguel.de.carros.endereco.Endereco; import br.com.aluguel.de.carros.usuario.Usuario; import…
-
2
votes1
answer23
viewsQ: PUT problems with Spring data JPA
I’m using Controller architecture, DTO, Repositoy, Service Use Postman to test the requests, I can do POST on User normally and when I do GET Postman returns me { "id": 3, "nome": "Arthur", "cpf":…