Posts by Juliano José da Silva • 11 points
3 posts
-
0
votes1
answer14
viewsA: Can an Enum table in the database store more than one value for the same element?
If you use common database types, such as int, string, and so on, you can only save one value per column. To write more than one value, you would have to use advanced types like json, but in this…
-
0
votes1
answer117
viewsA: JPA - There is the possibility of using Matchmode.ANYWHERE with Predicate
I had the same need and researched several solutions on the Internet that did not use customizations of the SQL dialect of the database used by the JPA provider. The least bad solution I got was as…
-
1
votes1
answer136
viewsA: How do I "settar" the digital certificate, when implementing wsdl from Sefaz, via cmd wsimport?
I believe you should add the certificate to the "cacerts" of your JVM through the keytool utility. See the example below. Remember to adjust the paths according to your environment:…