Posts by Tiago Mazzucco • 36 points
3 posts
-
0
votes1
answer36
viewsA: JPA+Eclipselink Composite Key with Object
You got a lot of problems there The first, nomenclature does not follow the conventions of Java, but going to the problem, Second, you should define a meaningful name for the attributes, different…
-
1
votes1
answer33
viewsA: load . txt from internal storage in an array
It is not possible to take the contents of the file directly from the File object, so use the useful java.nio.file.Files class String conteudoArquivo = Files.readString(uri.getPath());…
-
1
votes1
answer664
viewsA: Return the firebase.auth message in typescript
First problem The error message will not be returned by the createUserWithEmailAndPassword function but in callback (anonymous function created to treat the error) Second, the msgErro variable will…