Posts by Denis Neres • 79 points
7 posts
-
0
votes1
answer49
viewsA: Display message as per condition in query
The 'N recurring value =< 10' in the first record is taken as the default of the LAG, because there will be no one before him to make the comparison, so will print the valord of 'I''; As for the…
-
0
votes1
answer64
viewsA: Print class list attribute in xml
I don’t know which lib you’re using to serialize objects in XML, but I usually use Xstream. In case of serializing a list of products of an object Carrinho which has a list of products: XStream…
-
1
votes1
answer54
viewsA: AJAX updating the wrong table
Instead of: var item = new ProdutosFornecedores() { FornecedorID = id, ProdutoID = (produtoID) }; Put something like: var item = new ProdutosFornecedores() { FornecedorProduto = fornecedor_produto,…
-
1
votes3
answers35
viewsA: Ajax not sending request
Is that all the code you’re using? if yes, in the: document.querySelector('input[name="rdEspecieArquivo"]:checked').value; I haven’t found in any other part of your code that has that input nameless…
-
2
votes1
answer57
viewsQ: 'mvn clean Compile package' runs Phase Compiler 2 times?
Once if I run mvn clean package i know that consequently will run all phases of the default Lifecycle from Maven prior to package (Compile, test, package), so it is: calling for mvn clean Compile…
-
-2
votes2
answers1914
viewsA: Always ask for password in Git Bash Windows
Good afternoon, recommend that you go to do tes git command no bash with HTTPS (https://...), Then you’ll always ask for your credentials.
-
1
votes2
answers214
viewsA: Hibernate is not mapping classes
Man, in your persistence I’m not seeing the Mayor... org.hibernate.jpa.Hibernatepersistenceprovider add it and take a better look at this link…