Posts by Leonardo Machado • 51 points
4 posts
-
0
votes1
answer76
viewsA: How to perform an Insert from a select in a table of another PHP database
VALUES is wrong, no need to use. INSERT INTO Servor1.Tabelax (ID, Data) (SELECT ID, Data FROM Servor2.Tabelay);
-
1
votes2
answers1762
viewsA: mascara Angularjs
Friend, the mask displays the value only in the text field, it is necessary to format it before saving to the database. The ideal is to record the value without any formatting, and being a CNPJ the…
-
1
votes0
answers114
viewsQ: Jackson Fasterxml - @Jsonmanagedreference and @Jsonbackreference
I’m using the notes @JsonManagedReference and @JsonBackReference to map my bidirectional relationship, with this I was able to eliminate the infinite loop bug, but it led to another problem. I have…
-
3
votes1
answer219
viewsQ: Spring - Thread Dependency Injection
I need a little help. I’m doing some tests with Spring Boot and I have my services + some processes I want to run in thread. Each thread will run its own service. When I inject service dependency…