Posts by Victor Hugo Soares Cardoso • 14 points
3 posts
-
-1
votes2
answers1701
viewsA: Left Join with + equivalent in POSTGRES
In Postgresql, to return all data from table A that does not satisfy the condition of join with table B, the select can be done like this: select A.* from tabela1 A left join tabela2 B on A.id =…
-
0
votes2
answers117
viewsA: Values do not serialize in return in REST with Jersey
In order for a class attribute to be serialized, it must have the annotation @Jsonproperty OR have the access function get, example getId. OBS: When the name of the attribute to be serialized is…
-
0
votes2
answers81
viewsA: 'javax.persistence.Rollbackexception' received when invoking action listening '#{}
As the Giuliana Bezerra commented, the error is because of the CPF that is null: 'ERROR: null value in column "Cpf" violates the non-null constraint' This is the original exception of the database,…