Posts by matheus.paulo93 • 37 points
4 posts
-
1
votes0
answers1296
viewsQ: java.sql.Sqlrecoverableexception: ES error: Connection closed by the other end, Authentication lapse 0 ms
I have a simple Java application that makes a JDBC connection in an Oracle database, follow the source. public class Main { public static void main(String[] args) { try { Connection conn =…
-
-1
votes1
answer64
viewsA: Configuration of Hibernate
from what I understand, your project is already working, but the ideal would be you create a new project yourself, to build it using JPA and etc, it is not difficult and you can copy your persistent…
-
1
votes2
answers17712
viewsQ: Inputmask() function for Cpf and cnpj
I’m using the plugin Inputmask, the following JS code $("input[id*='cpfcnpj']").inputmask({ mask: ['999.999.999-99', '99.999.999/9999-99'], keepStatic: true }); Man input is taking the mask of Cpf,…
jqueryasked matheus.paulo93 37 -
1
votes0
answers217
viewsQ: Tree Table Primefaces does not work by selecting a Node from Java
I have a p:Tree being automatically loaded, so I need to do a search inside the existing nodes on Tree, I do the search and return the first Node I find and I want to arrow it like Selected, but…