Posts by airton • 29 points
4 posts
-
1
votes0
answers139
viewsQ: Json, Hibernate, Spring boot
I’m having two situations that should do the same thing but don’t: package com.example.demo.entity; import com.fasterxml.jackson.annotation.JsonIdentityInfo; import…
-
0
votes0
answers351
viewsQ: JPA hibernate - delete children from the list
public class A implements Serializable { @OneToMany(cascade = CascadeType.ALL, orphanRemoval = true, fetch = FetchType.LAZY) @JoinColumn(name = "A_ID") private List<B> bList; } public class B…
-
1
votes0
answers181
viewsQ: Multi tenancy springboot
How do spring keep tenantID present in all requests? I would like to point out that my idea for using multitenant would be as follows www.nomeDoSistema.com.br/nomeDaEmpresa/ and for each company…
-
0
votes1
answer65
viewsQ: Creation of Formulars
My problem is this: I have a class for example client she via own name, surname and Cpf and a list of objects of the address class. The address class will only have the field patio and city. My…